mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-23 21:46:27 +02:00
21 lines
387 B
Bash
Executable file
21 lines
387 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Put instructions to build your package in here
|
|
PREFIX=$(realpath $(dirname $0))
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
curl -L "https://www.nasm.us/pub/nasm/releasebuilds/2.15.05/nasm-2.15.05.tar.gz" -o nasm.tar.gz
|
|
|
|
tar xzf nasm.tar.gz --strip-components=1
|
|
|
|
# === autoconf based ===
|
|
./configure --prefix "$PREFIX"
|
|
|
|
make -j$(nproc)
|
|
make install -j$(nproc)
|
|
cd ../
|
|
rm -rf build
|
|
|