mirror of
https://github.com/outbackdingo/ports.git
synced 2026-02-08 10:20:32 +00:00
22 lines
498 B
Plaintext
Executable File
22 lines
498 B
Plaintext
Executable File
# description : Collection of boot loaders for the Linux operating system
|
|
# depends : mtools
|
|
|
|
name=syslinux
|
|
version=6.03
|
|
release=1
|
|
options="!makeflags"
|
|
source="http://www.kernel.org/pub/linux/utils/boot/$name/$name-$version.tar.xz
|
|
$name-$version-sysmacros.patch"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
export CFLAGS="$CFLAGS -fcommon"
|
|
|
|
patch -p1 -i $SRC/$name-$version-sysmacros.patch
|
|
|
|
make OPTFLAGS="$CFLAGS" installer
|
|
make OPTFLAGS="$CFLAGS" INSTALLROOT=$PKG MANDIR=/usr/share/man install
|
|
}
|
|
|