summaryrefslogtreecommitdiffstats
path: root/nasm/Pkgfile
diff options
context:
space:
mode:
authortnut <thierryn1 at hispeed dot ch>2012-05-12 12:23:18 +0200
committertnut <thierryn1 at hispeed dot ch>2012-05-12 12:23:18 +0200
commitdf41b3cabac0b320aba8b697a17a31f4faa41ea0 (patch)
tree9b0674aa2d6bfe0ef7d9d69b8c6dcf2db1d297a3 /nasm/Pkgfile
parent359ae7698181a0f7417ba0cb0ecd722758c632d2 (diff)
downloadnutyx-pakxe-df41b3cabac0b320aba8b697a17a31f4faa41ea0.tar.gz
nutyx-pakxe-df41b3cabac0b320aba8b697a17a31f4faa41ea0.tar.bz2
nutyx-pakxe-df41b3cabac0b320aba8b697a17a31f4faa41ea0.tar.xz
nutyx-pakxe-df41b3cabac0b320aba8b697a17a31f4faa41ea0.zip
nasm, ajout
Diffstat (limited to 'nasm/Pkgfile')
-rwxr-xr-xnasm/Pkgfile21
1 files changed, 21 insertions, 0 deletions
diff --git a/nasm/Pkgfile b/nasm/Pkgfile
new file mode 100755
index 000000000..35b7da996
--- /dev/null
+++ b/nasm/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Assembleur/déassembleur pour 80x86 concut pour la portabilitée et modularitée
+# URL: http://nasm.sourceforge.net/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=nasm
+version=2.07
+release=1
+source=( http://downloads.sourceforge.net/$name/$name-$version.tar.bz2)
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr\
+ --mandir=/usr/share/man
+ make
+ mkdir -p $PKG/usr/bin
+ mkdir -p $PKG/usr/share/man/man1
+ make INSTALLROOT=$PKG install
+
+}