blob: 60a547c30c15a84d8e42bb35c5bf2371258382e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
}
|