Add xbps-base-pkg-0.1. This installs the xbps binary pkg utils.

--HG--
extra : convert_revision : 3ecf2f81ddf7edd38ce04d0d0b7d53627d7847d0
This commit is contained in:
Juan RP 2009-02-25 16:59:13 +01:00
parent 56fb2c5ebe
commit cd76c83062
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
# Template file for 'xbps-base-pkg'
pkgname=xbps-base-pkg
version=0.1
build_style=custom-install
short_desc="xbps base package utils"
maintainer="Juan RP <xtraeme@gmail.com>"
long_desc="
This package installs the xbps base package utilities, to handle
xbps binary packages."
Add_dependency run glibc
Add_dependency run libarchive
Add_dependency run proplib
do_install()
{
local destdir=$XBPS_DESTDIR/$pkgname-$version
mkdir -p ${destdir}/lib
for f in bin cmpver digest repo pkgdb; do
install -D -m644 /usr/local/sbin/xbps-${f} \
${destdir}/sbin/xbps-${f}
done
cp -a /usr/local/lib/libxbps.so* ${destdir}/lib
}