29 lines
971 B
Bash
29 lines
971 B
Bash
# Template file for 'xbps-static'
|
|
#
|
|
# NOTE: keep this package synchronized with "srcpkgs/xbps".
|
|
pkgname=xbps-static
|
|
version=0.47
|
|
revision=4
|
|
build_style=configure
|
|
short_desc="The XBPS package system utilities - static binaries"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
homepage="http://www.voidlinux.eu/xbps"
|
|
license="2-clause-BSD"
|
|
distfiles="https://github.com/voidlinux/xbps/archive/$version.tar.gz"
|
|
checksum=34d8b69c006330426fcd00240f7d53425c5581d0635e18f7dfef55e1f7a917d2
|
|
|
|
wrksrc="xbps-${version}"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="zlib-devel libressl-devel libarchive-devel"
|
|
depends="xbps-triggers"
|
|
|
|
only_for_archs="i686-musl x86_64-musl mips-musl mipsel-musl armv6l-musl armv7l-musl aarch64-musl"
|
|
|
|
do_configure() {
|
|
HAVE_VASPRINTF=1 ./configure --prefix=/usr --sysconfdir=/etc --enable-static --enable-debug
|
|
}
|
|
do_install() {
|
|
make DESTDIR=${wrksrc}/static-install install
|
|
vmkdir usr/bin
|
|
mv ${wrksrc}/static-install/usr/bin/*.static ${DESTDIR}/usr/bin
|
|
}
|