blob: 1a2b323a62f400adbce18d184a193e39fb99514d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Permet de démarrer Linux sur une partition autre que Linux
# URL: http://syslinux.org
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: mtools, nasm
name=syslinux
version=3.82
release=1
source=(http://www.kernel.org/pub/linux/utils/boot/syslinux/$name-$version.tar.bz2\
Makefile.patch)
build() {
cd $name-$version
sed -i "s|win32/syslinux.exe||g" Makefile
# patch -p0 -i $SRC/Makefile.patch
make
make INSTALLROOT=$PKG install
}
|