mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 20:52:20 +01:00
32 lines
734 B
Plaintext
32 lines
734 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=syslinux
|
|
pkgver=4.03
|
|
pkgrel=1
|
|
pkgdesc="a boot loader for the Linux operating system which operates off an MS-DOS/Windows FAT filesystem."
|
|
url="http://syslinux.org"
|
|
arch="x86 x86_64"
|
|
license="GPL"
|
|
makedepends="nasm perl"
|
|
depends="mtools"
|
|
source="http://www.kernel.org/pub/linux/utils/boot/syslinux/${pkgver%%.*}.xx/$pkgname-$pkgver.tar.bz2
|
|
"
|
|
subpackages="$pkgname-doc"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
unset LDFLAGS
|
|
make installer || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make INSTALLROOT="$pkgdir" MANDIR=/usr/share/man local-install
|
|
}
|
|
|
|
md5sums="a7ca38a0a5786b6efae8fb01a1ae8070 syslinux-4.03.tar.bz2"
|