xbps: update to 0.4.

--HG--
extra : convert_revision : 8f907521dc05ad8f812c3d4e896885228a3efa7a
This commit is contained in:
Juan RP 2010-01-30 15:35:51 +01:00
parent 23bd0c80ed
commit ad5a884c98
2 changed files with 5 additions and 11 deletions

View file

@ -1,20 +1,19 @@
# Template file for 'xbps' # Template file for 'xbps'
pkgname=xbps pkgname=xbps
version=0.3 version=0.4
distfiles="http://launchpad.net/xbps/head/$version/+download/xbps-$version.tar.gz" distfiles="http://launchpad.net/xbps/head/$version/+download/xbps-$version.tar.gz"
build_style=gnu_makefile build_style=gnu_makefile
make_build_args="PREFIX=" make_install_args="PREFIX= MANDIR=/usr/share/man INCLUDEDIR=/usr/include"
make_install_args="PREFIX="
short_desc="The XBPS package system utilities" short_desc="The XBPS package system utilities"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
checksum=ba9b1964779c78351241a71dc11f5c5a7323c53dd9387adce261cf1d0eb241cf checksum=58fe1471901241116c4ca6bfc5ccf2ae2eff55fa917631658167c70b4733e1c8
long_desc=" long_desc="
The XBPS package system. A new, fast, from scratch and simple The XBPS package system. A new, fast, from scratch and simple
binary package manager. This package includes the binary utilities binary package manager. This package includes the binary utilities
to be able to handle XBPS binary packages." to be able to handle XBPS binary packages."
disable_parallel_build=yes
subpackages="$pkgname-static" subpackages="$pkgname-static"
Add_dependency run glibc Add_dependency run glibc
Add_dependency run libarchive Add_dependency run libarchive
Add_dependency run proplib Add_dependency run proplib
@ -23,9 +22,3 @@ Add_dependency build libarchive-devel
Add_dependency build proplib-devel Add_dependency build proplib-devel
Add_dependency build openssl-devel Add_dependency build openssl-devel
Add_dependency build asciidoc Add_dependency build asciidoc
post_install()
{
mkdir -p ${DESTDIR}/usr || return 1
mv ${DESTDIR}/share ${DESTDIR}/usr || return 1
}

View file

@ -9,6 +9,7 @@ long_desc="${long_desc}
do_install() do_install()
{ {
mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr
mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin
mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib
} }