summaryrefslogtreecommitdiffstats
path: root/base/yasm
diff options
context:
space:
mode:
authorThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:37:26 +0200
committerThierry N <thierryn1 at hispeed dot ch>2009-08-07 14:37:26 +0200
commit4737407fafca8d6527d2aae5d425d1ecf82d81c4 (patch)
treec0fc2d680fe708840d940d71616d17268dd27d1d /base/yasm
parent51e44147471c62066ad875c40e302ce1a2a35905 (diff)
downloadnutyx-extra-4737407fafca8d6527d2aae5d425d1ecf82d81c4.tar.gz
nutyx-extra-4737407fafca8d6527d2aae5d425d1ecf82d81c4.tar.bz2
nutyx-extra-4737407fafca8d6527d2aae5d425d1ecf82d81c4.tar.xz
nutyx-extra-4737407fafca8d6527d2aae5d425d1ecf82d81c4.zip
Ajout de yasm#0.7.2-1
Diffstat (limited to 'base/yasm')
-rw-r--r--base/yasm/.footprint45
-rw-r--r--base/yasm/.md5sum1
-rw-r--r--base/yasm/Pkgfile21
3 files changed, 67 insertions, 0 deletions
diff --git a/base/yasm/.footprint b/base/yasm/.footprint
new file mode 100644
index 000000000..93222a79d
--- /dev/null
+++ b/base/yasm/.footprint
@@ -0,0 +1,45 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/yasm
+drwxr-xr-x root/root usr/include/
+-rw-r--r-- root/root usr/include/libyasm-stdint.h
+-rw-r--r-- root/root usr/include/libyasm.h
+drwxr-xr-x root/root usr/include/libyasm/
+-rw-r--r-- root/root usr/include/libyasm/arch.h
+-rw-r--r-- root/root usr/include/libyasm/assocdat.h
+-rw-r--r-- root/root usr/include/libyasm/bitvect.h
+-rw-r--r-- root/root usr/include/libyasm/bytecode.h
+-rw-r--r-- root/root usr/include/libyasm/compat-queue.h
+-rw-r--r-- root/root usr/include/libyasm/coretype.h
+-rw-r--r-- root/root usr/include/libyasm/dbgfmt.h
+-rw-r--r-- root/root usr/include/libyasm/errwarn.h
+-rw-r--r-- root/root usr/include/libyasm/expr.h
+-rw-r--r-- root/root usr/include/libyasm/file.h
+-rw-r--r-- root/root usr/include/libyasm/floatnum.h
+-rw-r--r-- root/root usr/include/libyasm/hamt.h
+-rw-r--r-- root/root usr/include/libyasm/insn.h
+-rw-r--r-- root/root usr/include/libyasm/intnum.h
+-rw-r--r-- root/root usr/include/libyasm/inttree.h
+-rw-r--r-- root/root usr/include/libyasm/linemap.h
+-rw-r--r-- root/root usr/include/libyasm/listfmt.h
+-rw-r--r-- root/root usr/include/libyasm/md5.h
+-rw-r--r-- root/root usr/include/libyasm/module.h
+-rw-r--r-- root/root usr/include/libyasm/objfmt.h
+-rw-r--r-- root/root usr/include/libyasm/parser.h
+-rw-r--r-- root/root usr/include/libyasm/phash.h
+-rw-r--r-- root/root usr/include/libyasm/preproc.h
+-rw-r--r-- root/root usr/include/libyasm/section.h
+-rw-r--r-- root/root usr/include/libyasm/symrec.h
+-rw-r--r-- root/root usr/include/libyasm/valparam.h
+-rw-r--r-- root/root usr/include/libyasm/value.h
+drwxr-xr-x root/root usr/lib/
+-rw-r--r-- root/root usr/lib/libyasm.a
+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/yasm.1.gz
+drwxr-xr-x root/root usr/share/man/man7/
+-rw-r--r-- root/root usr/share/man/man7/yasm_arch.7.gz
+-rw-r--r-- root/root usr/share/man/man7/yasm_dbgfmts.7.gz
+-rw-r--r-- root/root usr/share/man/man7/yasm_objfmts.7.gz
+-rw-r--r-- root/root usr/share/man/man7/yasm_parsers.7.gz
diff --git a/base/yasm/.md5sum b/base/yasm/.md5sum
new file mode 100644
index 000000000..8a22d56a7
--- /dev/null
+++ b/base/yasm/.md5sum
@@ -0,0 +1 @@
+cc9360593de5625dca286f0bfcb27dd5 yasm-0.7.2.tar.gz
diff --git a/base/yasm/Pkgfile b/base/yasm/Pkgfile
new file mode 100644
index 000000000..a89348d1c
--- /dev/null
+++ b/base/yasm/Pkgfile
@@ -0,0 +1,21 @@
+# Description: Une reecriture de l'assembleur NASM sous licence BSD
+# URL: http://www.tortall.net/projects/yasm/
+# Maintainer: NuTyX core team
+# Packager: thierryn1 at hispeed dot ch
+# Depends on:
+
+name=yasm
+version=0.7.2
+release=1
+source=(http://www.tortall.net/projects/$name/releases/$name-$version.tar.gz )
+
+
+build() {
+ cd $name-$version
+ ./configure --prefix=/usr \
+ --mandir=/usr/share/man \
+ --infodir=/usr/share/info
+ make
+ make prefix=$PKG/usr mandir=$PKG/usr/share/man install
+ chown -R 0:0 $PKG
+}