opt/duktape/Pkgfile

16 lines
467 B
Plaintext
Raw Normal View History

2022-07-16 11:48:56 +02:00
# Description: embeddable Javascript engine, with a focus on portability and compact footprint
# URL: https://duktape.org/
# Maintainer: Tim Biermann, tbier at posteo dot de
name=duktape
version=2.7.0
2022-07-24 15:08:03 +02:00
release=2
2022-07-16 11:48:56 +02:00
source=(https://duktape.org/$name-$version.tar.xz)
build() {
cd $name-$version
export CFLAGS="$CFLAGS -DDUK_USE_FASTINT"
2022-07-24 15:08:03 +02:00
make -f Makefile.sharedlibrary INSTALL_PREFIX=/usr
2022-07-16 11:48:56 +02:00
make -f Makefile.sharedlibrary INSTALL_PREFIX=/usr DESTDIR=$PKG install
}