blob: 1456a630f475fb1bc4a21c725957f8f5375e4e00 (
plain)
1 # Description: 8086 assembler and loader which can generate 32-bit code for the 386+ processors
2 # URL: https://github.com/lkundrak/dev86/tree/master/bin86
3 # Maintainer: CRUX System Team, core-ports at crux dot nu
4
5 name=bin86
6 version=0.16.21
7 release=1
8 source=(https://mirror.netcologne.de/gentoo/distfiles/$name-$version.tar.gz \
9 $name-x86_64.patch)
10
11 build() {
12 cd $name-$version
13 patch -p1 -i $SRC/$name-x86_64.patch
14 make -j1 CFLAGS="$CFLAGS -D_POSIX_SOURCE" PREFIX=/usr
15 install -d $PKG/usr/{bin,share/man/man1}
16 make PREFIX=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install
17 }
|