vp-build/srcpkgs/bglibs/template

45 lines
1.0 KiB
Bash

# Template file for 'bglibs'
pkgname=bglibs
version=2.03
revision=4
nocross=yes
hostmakedepends="libtool perl"
short_desc="Collection of libraries by Bruce Guenter"
maintainer="bougyman <tj@rubyists.com>"
license="GPL-2"
homepage="http://untroubled.org/bglibs/"
distfiles="http://untroubled.org/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=fcc80b2deef7819abc9c155c4f393f4fc51e73400139c1c78bbe3015f2b12739
pre_build() {
# disable tests
sed -i '/^all: /s/selftests//' Makefile
}
do_build() {
echo "/usr/include" > conf-include
echo "/usr/lib" > conf-lib
echo "/usr/bin" > conf-bin
echo "/usr/share/man" > conf-man
echo "$CC $CFLAGS" > conf-cc
echo "$CC $LDFLAGS" > conf-ld
make ${makejobs}
}
do_install() {
install_prefix="${DESTDIR}" make install
find "${DESTDIR}"/usr/lib -name "*.a" -exec chmod 0644 {} \;
vdoc README
vlicense COPYING
}
bglibs-devel_package() {
depends="bglibs>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
}
}