contrib/mujs/Pkgfile

18 lines
452 B
Plaintext
Raw Normal View History

2021-09-25 18:22:29 +02:00
# Description: Lightweight Javascript interpreter
# URL: https://mujs.com
# Maintainer: Tim Biermann, tbier at posteo dot de
name=mujs
2021-12-11 13:55:23 +01:00
version=1.2.0
2021-09-25 18:22:29 +02:00
release=1
source=(https://mujs.com/downloads/$name-$version.tar.xz)
build() {
cd $name-$version
make CFLAGS="-std=c99 -O2 -pipe -march=x86-64" release
make prefix=/usr DESTDIR=$PKG install-static install-shared
sed -i -e "s/^Version:.*/Version: $version/" $PKG/usr/lib/pkgconfig/$name.pc
}