22 lines
434 B
Text
22 lines
434 B
Text
# NASM (Netwide Assembler) is an 80x86 assembler designed
|
|
# for portability and modularity. It includes a
|
|
# disassembler as well.
|
|
|
|
PKG="nasm"
|
|
PKG_VERSION="2.11.08"
|
|
PKG_FILE="nasm-${PKG_VERSION}.tar.xz"
|
|
URL="http://www.nasm.us/pub/nasm/releasebuilds/2.11.08/${PKG_FILE}"
|
|
MD5="0d461a085b088a14dd6628c53be1ce28"
|
|
for i in PATCH{1..10}; do
|
|
unset $i
|
|
done
|
|
|
|
( cat << "xEOFx"
|
|
|
|
./configure --prefix=/usr &&
|
|
make
|
|
|
|
make install
|
|
|
|
xEOFx
|
|
) > tmp
|