28 lines
815 B
Bash
28 lines
815 B
Bash
# Template file for 'oblibs'
|
|
pkgname=oblibs
|
|
version=0.0.2.1
|
|
revision=1
|
|
wrksrc="${pkgname}-v${version}"
|
|
build_style=configure
|
|
configure_args="--prefix=/usr --libdir=/usr/lib --with-sysdeps=${XBPS_CROSS_BASE}/usr/lib/skalibs/sysdeps"
|
|
makedepends="skalibs-devel execline-devel"
|
|
short_desc="Obarun library"
|
|
maintainer="mobinmob <mobinmob@disroot.org>"
|
|
license="ISC"
|
|
homepage="https://framagit.org/Obarun/oblibs"
|
|
distfiles="${homepage}/-/archive/v${version}/${pkgname}-v${version}.tar.bz2"
|
|
checksum=16e12024183c464ef6a5e05caa9121ebd08c02f3b83190890d0680e6c04e799c
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
oblibs-devel_package() {
|
|
depends="${makedepends} ${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/include/oblibs
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|