void-packages/srcpkgs/duktape/template
2019-09-04 11:53:36 +02:00

40 lines
1.1 KiB
Bash

# Template file for 'duktape'
pkgname=duktape
version=2.4.0
revision=1
build_style=gnu-makefile
make_build_args="-f Makefile.sharedlibrary"
make_install_args="-f Makefile.sharedlibrary INSTALL_PREFIX=\${DESTDIR}/usr"
short_desc="Embeddable JavaScript engine"
maintainer="Christopher Brannon <chris@the-brannons.com>"
license="MIT"
homepage="http://duktape.org"
distfiles="https://github.com/svaarala/${pkgname}/releases/download/v${version}/${pkgname}-${version}.tar.xz"
checksum=86a89307d1633b5cedb2c6e56dc86e92679fc34b05be551722d8cc69ab0771fc
pre_build() {
sed -i 's|^CC.*||g' Makefile.sharedlibrary
}
pre_install() {
vmkdir /usr/lib
vmkdir /usr/include
}
post_install() {
vlicense LICENSE.txt
# Two libraries were installed, one with debugging symbols, one
# without. Maybe that makes sense on a distro without debug
# splitting, but not on Void. Replace libduktape.
cd "${DESTDIR}/usr/lib"
rm libduktaped.*
}
duktape-devel_package() {
depends="duktape>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove "usr/lib/*.so"
}
}