blob: 9e7bb641695481f3e96f1b3cfbb0993685868564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
description="80x86 assembler"
packager="CRUX System Team <core-ports AT crux DOT nu>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://www.nasm.us/"
depends=()
# FIXME: Can build only on x86(_64) ?
name=nasm
version=2.09.04
release=1
source=(http://www.nasm.us/pub/nasm/releasebuilds/$version/$name-$version.tar.bz2)
build ()
{
cd $name-$version;
./configure --prefix=$prefix --mandir=$mandir;
make;
make INSTALLROOT=$PKG install
}
|