21 lines
541 B
Plaintext
21 lines
541 B
Plaintext
# Description: Collection of boot loaders for the Linux operating system
|
|
# URL: http://syslinux.zytor.com/
|
|
# Maintainer: Jose V Beneyto, sepen at crux dot nu
|
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
|
# Depends on: mtools perl
|
|
|
|
name=syslinux
|
|
version=3.86
|
|
release=1
|
|
source=(http://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.bz2)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
cp win32/syslinux.exe .
|
|
make OPTFLAGS="$CFLAGS"
|
|
mv syslinux.exe win32
|
|
make INSTALLROOT=$PKG install
|
|
mv $PKG/sbin/* $PKG/usr/bin
|
|
rm -r $PKG/sbin
|
|
}
|