blob: 3f7dc6650f9377c9852071e524da96b3979c5c48 (
plain)
1 # Description: embeddable Javascript engine, with a focus on portability and compact footprint
2 # URL: https://duktape.org/
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=duktape
6 version=2.7.0
7 release=2
8 source=(https://duktape.org/$name-$version.tar.xz)
9
10 build() {
11 cd $name-$version
12 export CFLAGS="$CFLAGS -DDUK_USE_FASTINT"
13 make -f Makefile.sharedlibrary INSTALL_PREFIX=/usr
14 make -f Makefile.sharedlibrary INSTALL_PREFIX=/usr DESTDIR=$PKG install
15 }
|