2020-07-02 23:33:24 +08:00
|
|
|
# Description: Collection of boot loaders for the Linux operating system
|
|
|
|
# URL:
|
|
|
|
# Maintainer: Emmett1, emmett1 dot 2miligrams at gmail dot com
|
|
|
|
# Depends on: mtools
|
|
|
|
|
|
|
|
name=syslinux
|
|
|
|
version=6.03
|
|
|
|
release=1
|
|
|
|
source=(http://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.xz
|
|
|
|
$name-$version-sysmacros.patch)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $name-$version
|
|
|
|
|
2020-11-13 13:58:01 +08:00
|
|
|
export CFLAGS="$CFLAGS -fcommon"
|
|
|
|
|
2020-07-02 23:33:24 +08:00
|
|
|
patch -p1 -i $SRC/$name-$version-sysmacros.patch
|
|
|
|
|
|
|
|
make OPTFLAGS="$CFLAGS" installer
|
|
|
|
make OPTFLAGS="$CFLAGS" INSTALLROOT=$PKG MANDIR=/usr/share/man install
|
|
|
|
}
|