mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 21:47:17 +08:00
23 lines
862 B
Bash
23 lines
862 B
Bash
# $Id: PKGBUILD 77410 2010-04-12 17:51:25Z tpowa $
|
|
# Contributor: lowercase
|
|
# Maintainer: Dale Blount <dale@archlinux.org>
|
|
pkgname=syslinux
|
|
pkgver=3.86
|
|
pkgrel=1
|
|
arch=('i686' 'x86_64')
|
|
pkgdesc="a boot loader for the Linux operating system which operates off an MS-DOS/Windows FAT filesystem."
|
|
url="http://syslinux.org"
|
|
license=(GPL)
|
|
depends=('perl' 'perl-passwd-md5' 'perl-digest-sha1' 'glibc' 'mtools')
|
|
makedepends=(nasm)
|
|
source=(http://www.kernel.org/pub/linux/utils/boot/syslinux/$pkgname-$pkgver.tar.bz2)
|
|
|
|
build() {
|
|
LDFLAGS=""
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
sed -i -e 's#win32/syslinux.exe##g' Makefile
|
|
make || return 1
|
|
make SBINDIR=$startdir/pkg/usr/sbin BINDIR=$startdir/pkg/usr/bin INCDIR=$startdir/pkg/usr/include MANDIR=$startdir/pkg/usr/share/man AUXDIR=$startdir/pkg/usr/lib/syslinux install
|
|
}
|
|
md5sums=('d6fb0231e82190b4932b2aa20274911a')
|