a76f6c5610
This will be required as a dependency of edbrowse soon. Closes: #7282 [via git-merge-pr]
36 lines
1 KiB
Bash
36 lines
1 KiB
Bash
# Template file for 'duktape'
|
|
pkgname=duktape
|
|
version=2.1.1
|
|
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=6a58e5e8d8c7e3e638cd6e5b91be3bcaa4c89778d3892054a36052ae043dd11e
|
|
|
|
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="${makedepends} duktape>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove "usr/include"
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|