mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-29 13:22:21 +01:00
66 lines
2.2 KiB
Plaintext
66 lines
2.2 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=syslinux
|
|
pkgver=6.03
|
|
pkgrel=2
|
|
_ver=${pkgver/_/-}
|
|
pkgdesc="Boot loader for the Linux operating system"
|
|
url="http://syslinux.org"
|
|
arch="x86 x86_64"
|
|
license="GPL"
|
|
makedepends="linux-headers nasm perl util-linux-dev gnu-efi-dev"
|
|
depends="mtools blkid mkinitfs"
|
|
triggers="syslinux.trigger=/boot"
|
|
install="syslinux.post-upgrade"
|
|
options="textrels"
|
|
ldpath="/usr/share/syslinux"
|
|
|
|
source="https://www.kernel.org/pub/linux/utils/boot/syslinux/syslinux-$_ver.tar.xz
|
|
update-extlinux.conf
|
|
update-extlinux
|
|
"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
|
|
_loaderarch=
|
|
case "$CARCH" in
|
|
x86) _loaderarch=efi32;;
|
|
x86_64) _loaderarch=efi64;;
|
|
esac
|
|
|
|
_builddir="$srcdir"/$pkgname-$_ver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
for i in $source; do
|
|
case "$i" in
|
|
*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
|
|
esac
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
unset LDFLAGS
|
|
make $_loaderarch installer || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 INSTALLROOT="$pkgdir" MANDIR=/usr/share/man \
|
|
bios $_loaderarch install || return 1
|
|
|
|
mkdir -p "$pkgdir"/etc/update-extlinux.d
|
|
cp "$srcdir"/update-extlinux.conf "$pkgdir"/etc/
|
|
sed "/^version=/s/=.*/=$pkgver-r$pkgrel/" "$srcdir"/update-extlinux \
|
|
> "$pkgdir"/sbin/update-extlinux
|
|
chmod 755 "$pkgdir"/sbin/update-extlinux
|
|
}
|
|
|
|
md5sums="92a253df9211e9c20172796ecf388f13 syslinux-6.03.tar.xz
|
|
38d206b75b1096ba5df6cfabf455ab06 update-extlinux.conf
|
|
99cb67d6e92c1fc59c6e346c4203abc9 update-extlinux"
|
|
sha256sums="26d3986d2bea109d5dc0e4f8c4822a459276cf021125e8c9f23c3cca5d8c850e syslinux-6.03.tar.xz
|
|
d0b7b869489d0ac1529dd742d8d88844ea4e0a5d893de5218b250b97f68e55f2 update-extlinux.conf
|
|
8cc377cc9f244a902087992cd85a88826babf9a0a5096e31bd709bd78a561817 update-extlinux"
|
|
sha512sums="dd2b2916962b9e93bc1e714182e3ca2a727a229b8afabe913050bcfdd43ee2af51ee3acf79121d8c20caf434583efaa7f3196871e0e07c04d82191323a50fe31 syslinux-6.03.tar.xz
|
|
f304068ee174e531890fed20b05d962e6c076160c470ed9cf0d822ff56917793ecabec8c0495b045a740f1f63412a55fbb1fa4b4231b18f76c8584b55f51306d update-extlinux.conf
|
|
6b90164c5669744d1c3ba379d3d919bd16dfccb87e04ed5dcb6c324617fa0186840b359f5bb2d8515da3b26077b585050812755eb4e0b36e0e646dc7bcf024d2 update-extlinux"
|