2014-03-20 15:36:28 +00:00
|
|
|
# Template file for 'xbps-static'
|
|
|
|
#
|
|
|
|
# NOTE: keep this package synchronized with "srcpkgs/xbps".
|
|
|
|
pkgname=xbps-static
|
2015-01-05 15:11:45 +00:00
|
|
|
version=0.43.1
|
2015-01-18 09:28:34 +00:00
|
|
|
revision=4
|
2014-10-29 08:59:57 +00:00
|
|
|
build_style=configure
|
2014-03-20 15:36:28 +00:00
|
|
|
short_desc="The XBPS package system utilities - static binaries"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
|
|
homepage="http://www.voidlinux.eu/xbps"
|
|
|
|
license="Simplified BSD"
|
2014-10-29 08:59:57 +00:00
|
|
|
distfiles="https://github.com/voidlinux/xbps/archive/${version}.tar.gz"
|
2015-01-05 15:11:45 +00:00
|
|
|
checksum=d8a2511dbeb7bccad0bf0bfd4fa9e46c5483c523db1f30bdd179c24ddf244e26
|
2014-12-22 11:58:58 +00:00
|
|
|
|
|
|
|
wrksrc="xbps-${version}"
|
2014-12-22 11:57:13 +00:00
|
|
|
hostmakedepends="pkg-config"
|
2014-07-14 10:21:50 +00:00
|
|
|
makedepends="zlib-devel libressl-devel libarchive-devel>=3.1.2"
|
2014-03-20 15:36:28 +00:00
|
|
|
depends="xbps-triggers"
|
|
|
|
|
2014-03-31 10:20:29 +00:00
|
|
|
only_for_archs="i686-musl x86_64-musl armv6l-musl armv7l-musl"
|
2014-03-20 15:44:22 +00:00
|
|
|
|
2014-03-20 15:36:28 +00:00
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
|
|
i686-musl) CFLAGS+=" -fno-stack-protector";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
do_configure() {
|
|
|
|
HAVE_VASPRINTF=1 ./configure --prefix=/usr --sysconfdir=/etc --enable-static --enable-debug
|
|
|
|
}
|
|
|
|
do_install() {
|
|
|
|
make DESTDIR=${wrksrc}/static-install install
|
|
|
|
vmkdir usr/sbin
|
|
|
|
mv ${wrksrc}/static-install/usr/sbin/*.static ${DESTDIR}/usr/sbin
|
|
|
|
}
|