47 lines
1.4 KiB
Bash
47 lines
1.4 KiB
Bash
# Template file for 'skalibs'
|
|
pkgname=skalibs
|
|
version=2.6.3.1
|
|
revision=1
|
|
_sysdepspkg=skaware-void-sysdeps
|
|
build_style=gnu-configure
|
|
configure_args="--libdir=/usr/lib --enable-static --enable-shared --enable-clock
|
|
--enable-monotonic --enable-force-devr --datadir=/usr/share/$pkgname"
|
|
short_desc="General purpose libraries for building software from skarnet.org"
|
|
maintainer="bougyman <bougyman@voidlinux.eu>"
|
|
license="ISC"
|
|
homepage="http://skarnet.org/software/skalibs/"
|
|
distfiles="http://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=8508ca00d4e2355e9ec0ec7f4808e98b349999d6732d2f123ac53b4df5260c81
|
|
|
|
CFLAGS="-D_DEFAULT_SOURCE"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
distfiles+=" https://github.com/CMB/${_sysdepspkg}/archive/${version}.tar.gz"
|
|
checksum+=" b8763ec2e6867a5639ce7aa2bb7c0f5d5ccc7455a26a6d98f71b2b7d94ce9dae"
|
|
configure_args+=" --with-sysdeps=../${_sysdepspkg}-${version}/${XBPS_CROSS_TRIPLET}"
|
|
fi
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
skalibs-doc_package() {
|
|
noarch=yes
|
|
short_desc+=" - documentation"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmkdir usr/share/doc/skalibs
|
|
vcopy "doc/*" usr/share/doc/skalibs
|
|
}
|
|
}
|
|
skalibs-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/skalibs/sysdeps
|
|
vmove usr/lib/*.a
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|