vp-build/srcpkgs/xbps-static-git/template

43 lines
1.1 KiB
Plaintext

# Template file for 'xbps-static-git'
#
# NOTE: keep this package synchronized with "srcpkgs/xbps-git".
pkgname=xbps-static-git
version=20140323
revision=1
short_desc="The XBPS package system (development branch) - static bins"
maintainer="Juan RP <xtraeme@gmail.com>"
homepage="http://www.voidlinux.eu/xbps"
license="Simplified BSD"
hostmakedepends="which pkg-config"
makedepends="zlib-devel openssl-devel libarchive-devel>=3.1.2"
provides="xbps-static-${version}_${revision}"
replaces="xbps-static>=0"
depends="xbps-triggers"
only_for_archs="i686-musl x86_64-musl armv6hf-musl armv7hf-musl"
case "$XBPS_TARGET_MACHINE" in
i686-musl) CFLAGS+=" -fno-stack-protector";;
esac
do_fetch() {
local url="git://github.com/voidlinux/xbps"
msg_normal "Fetching source from $url ...\n"
git clone ${url} ${pkgname}-${version}
}
do_configure() {
HAVE_VASPRINTF=1 ./configure --prefix=/usr --sysconfdir=/etc --enable-debug --enable-static
}
do_build() {
make ${makejobs}
}
do_install() {
make DESTDIR=${wrksrc}/static-install install
vmkdir usr/sbin
mv ${wrksrc}/static-install/usr/sbin/*.static ${DESTDIR}/usr/sbin
}