69 lines
1.7 KiB
Bash
69 lines
1.7 KiB
Bash
# Template file for 'xbps'
|
|
pkgname=xbps
|
|
version=0.59.1
|
|
revision=3
|
|
bootstrap=yes
|
|
build_style=configure
|
|
short_desc="XBPS package system utilities"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="BSD-2-Clause, BSD-3-Clause, ISC"
|
|
homepage="https://github.com/void-linux/xbps"
|
|
changelog="https://github.com/void-linux/xbps/blob/master/NEWS"
|
|
distfiles="https://github.com/void-linux/xbps/archive/${version}.tar.gz"
|
|
checksum=0cbd8d5f23a62047c75974bca21da9f004a94efffd7f37c68562a8dbc869fb2a
|
|
|
|
hostmakedepends="pkgconf"
|
|
checkdepends="kyua"
|
|
makedepends="zlib-devel libressl-devel libarchive-devel"
|
|
depends="ca-certificates xbps-triggers"
|
|
|
|
make_dirs="/etc/xbps.d 0755 root root"
|
|
|
|
if [ "$CHROOT_READY" ]; then
|
|
makedepends+=" atf-devel"
|
|
xbps-tests_package() {
|
|
short_desc+=" - Kyua testsuite"
|
|
pkg_install() {
|
|
vmove usr/tests
|
|
}
|
|
}
|
|
|
|
fi
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr --sysconfdir=/etc ${CHROOT_READY:+--enable-tests}
|
|
}
|
|
|
|
post_install() {
|
|
local repo="https://alpha.de.repo.voidlinux.org/current" suffix=
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
aarch64*) suffix="/aarch64";;
|
|
*-musl) suffix="/musl";;
|
|
esac
|
|
|
|
echo "repository=${repo}${suffix}" > \
|
|
${DESTDIR}/usr/share/xbps.d/00-repository-main.conf
|
|
echo "architecture=${XBPS_TARGET_MACHINE}" > \
|
|
${DESTDIR}/usr/share/xbps.d/xbps-arch.conf
|
|
|
|
vlicense LICENSE
|
|
vlicense LICENSE.3RDPARTY
|
|
}
|
|
|
|
libxbps_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
}
|
|
}
|
|
|
|
libxbps-devel_package() {
|
|
short_desc+=" - runtime library (development files)"
|
|
depends="${makedepends} libxbps>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
}
|
|
}
|