xbps: update to 0.9.0. FINALLY

This commit is contained in:
Juan RP 2011-07-08 09:01:08 +02:00
parent 5715fb6eb8
commit 01e8cb6de1
2 changed files with 11 additions and 7 deletions

View file

@ -1,6 +1,6 @@
# Template file for 'xbps' # Template file for 'xbps'
pkgname=xbps pkgname=xbps
version=0.8.1 version=0.9.0
distfiles="http://xbps.googlecode.com/files/xbps-$version.tar.gz" distfiles="http://xbps.googlecode.com/files/xbps-$version.tar.gz"
build_style=configure build_style=configure
configure_args="--prefix=/ --includedir=/usr/include configure_args="--prefix=/ --includedir=/usr/include
@ -9,14 +9,17 @@ configure_args="--prefix=/ --includedir=/usr/include
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>"
homepage="http://code.google.com/p/xbps" homepage="http://code.google.com/p/xbps"
license="BSD" license="2-clause BSD"
checksum=7a5ef9490a6c96aa241dd98db87557c0f840fc1b3f8312fc06374039caea2134 checksum=7eb71a70e43bb4b816de9408f093ca4235b8a3a53385a386819c2b4c2a1a46f8
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."
broken_as_needed=yes
conf_files="/etc/xbps-conf.plist"
subpackages="$pkgname-static" subpackages="$pkgname-static"
replaces="xbps>=0"
Add_dependency run glibc Add_dependency run glibc
Add_dependency run zlib Add_dependency run zlib

View file

@ -6,10 +6,11 @@ long_desc="${long_desc}
This package contains the static binaries and library, that can be This package contains the static binaries and library, that can be
used on any GNU/Linux distribution matching the architecture." used on any GNU/Linux distribution matching the architecture."
replaces="xbps-devel>=0"
do_install() do_install()
{ {
mkdir -p ${DESTDIR}/sbin ${DESTDIR}/usr/lib vmove usr/include usr
mv ${SRCPKGDESTDIR}/usr/include ${DESTDIR}/usr vmove "sbin/*.static" sbin
mv ${SRCPKGDESTDIR}/sbin/*.static ${DESTDIR}/sbin vmove "lib/*.a" usr/lib
mv ${SRCPKGDESTDIR}/lib/*.a ${DESTDIR}/usr/lib
} }