summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 03:52:04 +0100
committerLukc <lukc@upyum.com>2010-12-12 03:52:04 +0100
commitc67217c921afee96033d38b503038ebeabe8fc4d (patch)
treec086113fe95f2b6a31e91c8f3f9a596890569ba7
parentf60c4c33050fd49d8f867c691e2f45c2c8e52cb3 (diff)
downloaddevel-c67217c921afee96033d38b503038ebeabe8fc4d.tar.gz
devel-c67217c921afee96033d38b503038ebeabe8fc4d.tar.bz2
devel-c67217c921afee96033d38b503038ebeabe8fc4d.tar.xz
devel-c67217c921afee96033d38b503038ebeabe8fc4d.zip
Recette de nasm ajout?e.
-rw-r--r--nasm/.footprint9
-rw-r--r--nasm/.md5sum1
-rw-r--r--nasm/.sha256sum1
-rw-r--r--nasm/Pkgfile19
-rw-r--r--nasm/Pkgfile.old15
5 files changed, 45 insertions, 0 deletions
diff --git a/nasm/.footprint b/nasm/.footprint
new file mode 100644
index 0000000..3fb76b8
--- /dev/null
+++ b/nasm/.footprint
@@ -0,0 +1,9 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/nasm
+-rwxr-xr-x root/root usr/bin/ndisasm
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+drwxr-xr-x root/root usr/share/man/man1/
+-rw-r--r-- root/root usr/share/man/man1/nasm.1.bz2
+-rw-r--r-- root/root usr/share/man/man1/ndisasm.1.bz2
diff --git a/nasm/.md5sum b/nasm/.md5sum
new file mode 100644
index 0000000..2091007
--- /dev/null
+++ b/nasm/.md5sum
@@ -0,0 +1 @@
+c11f083a501adae843d0bc3e7c106c73 nasm-2.09.04.tar.bz2
diff --git a/nasm/.sha256sum b/nasm/.sha256sum
new file mode 100644
index 0000000..7102167
--- /dev/null
+++ b/nasm/.sha256sum
@@ -0,0 +1 @@
+3f13e263f20040008ea2078692a20da25f999e466e6d237b7f11e100a7c924aa nasm-2.09.04.tar.bz2
diff --git a/nasm/Pkgfile b/nasm/Pkgfile
new file mode 100644
index 0000000..9e7bb64
--- /dev/null
+++ b/nasm/Pkgfile
@@ -0,0 +1,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
+}
diff --git a/nasm/Pkgfile.old b/nasm/Pkgfile.old
new file mode 100644
index 0000000..e038fcd
--- /dev/null
+++ b/nasm/Pkgfile.old
@@ -0,0 +1,15 @@
+# Description: 80x86 assembler
+# URL: http://www.nasm.us/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+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=/usr --mandir=/usr/man
+ make
+ make INSTALLROOT=$PKG install
+}