diff options
Diffstat (limited to 'extra/bin86')
-rw-r--r-- | extra/bin86/.footprint.i686 | 12 | ||||
-rw-r--r-- | extra/bin86/.footprint.x86_64 | 12 | ||||
-rw-r--r-- | extra/bin86/.md5sum.i686 | 2 | ||||
-rw-r--r-- | extra/bin86/.md5sum.x86_64 | 2 | ||||
-rw-r--r-- | extra/bin86/Pkgfile | 20 |
5 files changed, 48 insertions, 0 deletions
diff --git a/extra/bin86/.footprint.i686 b/extra/bin86/.footprint.i686 new file mode 100644 index 000000000..4da5fc07c --- /dev/null +++ b/extra/bin86/.footprint.i686 @@ -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/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/as86.1.gz +-rw-r--r-- root/root usr/share/man/man1/ld86.1.gz diff --git a/extra/bin86/.footprint.x86_64 b/extra/bin86/.footprint.x86_64 new file mode 100644 index 000000000..4da5fc07c --- /dev/null +++ b/extra/bin86/.footprint.x86_64 @@ -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/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/as86.1.gz +-rw-r--r-- root/root usr/share/man/man1/ld86.1.gz diff --git a/extra/bin86/.md5sum.i686 b/extra/bin86/.md5sum.i686 new file mode 100644 index 000000000..9f2ba552d --- /dev/null +++ b/extra/bin86/.md5sum.i686 @@ -0,0 +1,2 @@ +4c04c0af7c2ba637d61e67eac2a59840 bin86-0.16.17-x86_64-1.patch +c9e8d72dd2e7457b52d0e3164fc199a1 bin86-0.16.17.tar.gz diff --git a/extra/bin86/.md5sum.x86_64 b/extra/bin86/.md5sum.x86_64 new file mode 100644 index 000000000..9f2ba552d --- /dev/null +++ b/extra/bin86/.md5sum.x86_64 @@ -0,0 +1,2 @@ +4c04c0af7c2ba637d61e67eac2a59840 bin86-0.16.17-x86_64-1.patch +c9e8d72dd2e7457b52d0e3164fc199a1 bin86-0.16.17.tar.gz diff --git a/extra/bin86/Pkgfile b/extra/bin86/Pkgfile new file mode 100644 index 000000000..cc498679f --- /dev/null +++ b/extra/bin86/Pkgfile @@ -0,0 +1,20 @@ +# Description: Environnement de dev pour 8086 +# URL: http://www.cix.co.uk/~mayday/ +# Maintainer: NuTyX core team +# Packager: thierryn1 at hispeed dot ch + +name=bin86 +version=0.16.17 +release=3 +source=(http://homepage.ntlworld.com/robert.debath/dev86/$name-$version.tar.gz\ + http://nutyx.meticul.eu/files/patchs/$name/$name-$version-x86_64-1.patch) +build() { + cd $name-$version + if [ "`uname -m`" == "x86_64" ]; then + patch -Np1 -i ../bin86-0.16.17-x86_64-1.patch + fi + make CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr + mkdir -p $PKG/usr/bin + mkdir -p $PKG/usr/share/man/man1 + make PREFIX=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install +} |