blob: 1ea255fd5a4b46fd85a88b6f4c06f4c0de27be71 (
plain)
1 # Description: Collection of boot loaders for the Linux operating system
2 # URL: http://syslinux.zytor.com/
3 # Maintainer: Matt Housh, jaeger at crux dot ninja
4 # Depends on: mtools perl python
5
6 name=syslinux
7 version=6.03
8 release=5
9 source=(http://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.xz \
10 $name-Makefile.patch)
11
12 build() {
13 cd $name-$version
14
15 patch -p0 -i $SRC/$name-Makefile.patch
16
17 make OPTFLAGS="$CFLAGS" installer
18 make -j1 OPTFLAGS="$CFLAGS" INSTALLROOT=$PKG MANDIR=/usr/share/man install
19
20 # revdep
21 install -d $PKG/etc/revdep.d
22 echo '/usr/share/syslinux' > $PKG/etc/revdep.d/syslinux
23 echo '/usr/share/syslinux/efi64' >> $PKG/etc/revdep.d/syslinux
24 }
|