contrib/dev86/Pkgfile

22 lines
575 B
Plaintext
Raw Normal View History

2007-05-15 21:29:37 +02:00
# Description: cross development C compiler environment for the production of 8086 executables.
# URL: http://homepage.ntlworld.com/robert.debath/dev86/
2009-10-26 09:19:19 +01:00
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on:
2007-05-15 21:29:37 +02:00
name=dev86
2014-08-08 09:54:46 +02:00
version=0.16.21
2011-06-06 11:31:48 +02:00
release=1
2014-08-08 09:54:46 +02:00
source=(http://v3.sk/~lkundrak/dev86/Dev86src-$version.tar.gz)
2007-05-15 21:29:37 +02:00
build() {
cd $name-$version
2009-10-26 09:19:19 +01:00
echo quit | make -j1 PREFIX=/usr GCCFLAG="$CFLAGS"
make -j1 install-all DIST=$PKG
rm -f $PKG/usr/bin/{as,ld,nm,objdump,size}86
rm -f $PKG/usr/man/man1/{as,ld}86.1
2007-05-15 21:29:37 +02:00
}
2009-10-26 09:19:19 +01:00