summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukc <lukc@upyum.com>2010-12-12 05:03:14 +0100
committerLukc <lukc@upyum.com>2010-12-12 05:03:14 +0100
commitf04de4a3ba2d1b68d9a32149a1154548c816d433 (patch)
tree911a5debd21e3046d87f2e1a751ff54dd6a72c90
parent9c6b0be2773162a4d9a344371656cdfb510e1875 (diff)
downloaddevel-f04de4a3ba2d1b68d9a32149a1154548c816d433.tar.gz
devel-f04de4a3ba2d1b68d9a32149a1154548c816d433.tar.bz2
devel-f04de4a3ba2d1b68d9a32149a1154548c816d433.tar.xz
devel-f04de4a3ba2d1b68d9a32149a1154548c816d433.zip
Recette de bin86 ajoutée.
-rw-r--r--bin86/.footprint12
-rw-r--r--bin86/.md5sum1
-rw-r--r--bin86/.sha256sum1
-rw-r--r--bin86/Pkgfile18
-rw-r--r--bin86/Pkgfile.old16
5 files changed, 48 insertions, 0 deletions
diff --git a/bin86/.footprint b/bin86/.footprint
new file mode 100644
index 0000000..7b9073f
--- /dev/null
+++ b/bin86/.footprint
@@ -0,0 +1,12 @@
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/as86
+-rwxr-xr-x root/root usr/bin/ld86
+lrwxrwxrwx root/root usr/bin/nm86 -> objdump86
+-rwxr-xr-x root/root usr/bin/objdump86
+lrwxrwxrwx root/root usr/bin/size86 -> objdump86
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/share/man/
+-rw-r--r-- root/root usr/share/man/as86.1
+-rw-r--r-- root/root usr/share/man/ld86.1
+drwxr-xr-x root/root usr/share/man/man1/
diff --git a/bin86/.md5sum b/bin86/.md5sum
new file mode 100644
index 0000000..a1be0ff
--- /dev/null
+++ b/bin86/.md5sum
@@ -0,0 +1 @@
+c9e8d72dd2e7457b52d0e3164fc199a1 bin86-0.16.17.tar.gz
diff --git a/bin86/.sha256sum b/bin86/.sha256sum
new file mode 100644
index 0000000..377cd26
--- /dev/null
+++ b/bin86/.sha256sum
@@ -0,0 +1 @@
+429ba36cb6220083ad7cf56d644b7265d401e631c93eb42f4b7ab9bb48c6829c bin86-0.16.17.tar.gz
diff --git a/bin86/Pkgfile b/bin86/Pkgfile
new file mode 100644
index 0000000..fc75802
--- /dev/null
+++ b/bin86/Pkgfile
@@ -0,0 +1,18 @@
+description="8086 assembler and loader which can generate 32-bit code for the 386+ processors."
+packager="CRUX System Team <core-ports AT crux DOT nu>"
+maintainer="Lukc <lukc AT upyum DOT com>"
+url="http://www.cix.co.uk/~mayday/"
+depends=()
+
+name=bin86
+version=0.16.17
+release=1
+source=(http://homepage.ntlworld.com/robert.debath/dev86/$name-$version.tar.gz)
+build ()
+{
+ cd $name-$version;
+ make CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=$prefix MANDIR=$mandir;
+ mkdir -p $PKG$bindir;
+ mkdir -p $PKG$mandir/man1;
+ make PREFIX=$PKG$prefix MANDIR=$PKG$mandir install
+}
diff --git a/bin86/Pkgfile.old b/bin86/Pkgfile.old
new file mode 100644
index 0000000..60a547c
--- /dev/null
+++ b/bin86/Pkgfile.old
@@ -0,0 +1,16 @@
+# Description: 8086 assembler and loader which can generate 32-bit code for the 386+ processors
+# URL: http://www.cix.co.uk/~mayday/
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+
+name=bin86
+version=0.16.17
+release=1
+source=(http://homepage.ntlworld.com/robert.debath/dev86/$name-$version.tar.gz)
+
+build() {
+ cd $name-$version
+ make CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr
+ mkdir -p $PKG/usr/bin
+ mkdir -p $PKG/usr/man/man1
+ make PREFIX=$PKG/usr install
+}