|
root / devel / nasm / build.sh
build.sh Bash 13 lines 222 B
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#!/bin/sh
# Build script for nasm (autotools, Template A).
set -e
cd "$SRCDIR"

./configure \
    --prefix=$PREFIX \
    --build=$BUILD_TRIPLE \
    --host=$BUILD_TRIPLE

gmake -j${JOBS:-1}
gmake install DESTDIR="$PKGDIR"