contrib/syslinux/Pkgfile

26 lines
759 B
Plaintext
Raw Normal View History

2007-01-27 13:38:16 +01:00
# Description: Collection of boot loaders for the Linux operating system
2007-07-24 13:17:44 +02:00
# URL: http://syslinux.zytor.com/
2009-04-17 08:05:30 +02:00
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: mtools perl
2007-01-27 13:38:16 +01:00
name=syslinux
2010-07-15 21:03:16 +02:00
version=4.01
2010-07-16 21:41:35 +02:00
release=2
source=(http://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.bz2 \
dos_out.patch)
2007-01-27 13:38:16 +01:00
build() {
2008-02-25 12:16:23 +01:00
cd $name-$version
2010-07-16 21:41:35 +02:00
patch -Np1 -i $SRC/dos_out.patch
make OPTFLAGS="$CFLAGS"
2009-12-21 11:15:37 +01:00
make INSTALLROOT=$PKG install
2010-07-16 21:41:35 +02:00
2009-12-21 11:15:37 +01:00
mv $PKG/sbin/* $PKG/usr/bin
rm -r $PKG/sbin
2010-07-16 21:41:35 +02:00
install -d $PKG/usr/share/syslinux/dosutil
cp dosutil/{copybs.com,eltorito.sys,mdiskchk.com} $PKG/usr/share/syslinux/dosutil
install -m 0644 dos/syslinux.com win32/syslinux.exe $PKG/usr/share/syslinux
2007-01-27 13:38:16 +01:00
}