44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Template file for 'netbsd-rumpkernel'.
|
|
pkgname=netbsd-rumpkernel
|
|
version=20140526
|
|
revision=2
|
|
wrksrc="buildrump.sh-${version}"
|
|
short_desc="The NetBSD rump kernel"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
hostmakedepends="git"
|
|
license="BSD"
|
|
homepage="https://github.com/anttikantee/buildrump.sh"
|
|
distfiles="https://github.com/rumpkernel/buildrump.sh/archive/v${version}.tar.gz"
|
|
checksum=c39e587868cd36ff5c6fa778aa47dd21dfcc9529409fad02a7fe33ade24a57a8
|
|
|
|
nocross="https://build.voidlinux.eu/builders/armv7l_builder/builds/28268/steps/shell_3/logs/stdio"
|
|
|
|
do_configure() {
|
|
./buildrump.sh checkout
|
|
# Do not install preformatted manpages
|
|
sed -i '/MKCATPAGES/d' buildrump.sh
|
|
}
|
|
do_build() {
|
|
export CPPFLAGS=-Wno-error
|
|
|
|
./buildrump.sh ${makejobs} -r -V MKPICINSTALL=no -d ${DESTDIR}/usr tools
|
|
./buildrump.sh ${makejobs} -r -d ${DESTDIR}/usr build
|
|
}
|
|
do_install() {
|
|
./buildrump.sh -r -V MKPICINSTALL=no -d ${DESTDIR}/usr install
|
|
# Set proper perms to libs.
|
|
chmod 644 ${DESTDIR}/usr/lib/*.a
|
|
chmod 755 ${DESTDIR}/usr/lib/*.so.*
|
|
}
|
|
|
|
netbsd-rumpkernel-devel_package() {
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/share
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|