41 lines
1.2 KiB
Bash
41 lines
1.2 KiB
Bash
# Template file for 'skalibs'
|
|
pkgname=skalibs
|
|
version=2.10.0.1
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--libdir=/usr/lib --enable-static --enable-shared
|
|
--enable-force-devr
|
|
--datadir=/usr/share/$pkgname --libdir=/usr/lib
|
|
--bindir=/usr/bin --dynlibdir=/usr/lib
|
|
--with-sysdep-devurandom=yes"
|
|
short_desc="General purpose libraries for building software from skarnet.org"
|
|
maintainer="mobinmob <mobinmob@disroot.org>"
|
|
license="ISC"
|
|
homepage="https://skarnet.org/software/skalibs/"
|
|
changelog="https://skarnet.org/software/skalibs/upgrade.html"
|
|
distfiles="https://skarnet.org/software/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=4ffbae8fdcd5108916bbea8eb6f795106d2c3189039e331bcd4b8e00e9971cb2
|
|
|
|
post_install() {
|
|
vlicense COPYING LICENSE
|
|
}
|
|
|
|
skalibs-doc_package() {
|
|
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"
|
|
}
|
|
}
|