85cc462e1d
* Moved helpers, common and triggers dirs into xbps-src, where they belong. * Renamed the templates dir to srcpkgs, it was so redundant before. * Make it possible to add subpkgs with no restriction in names, for example udev now has a subpkgs called "libgudev". Previously subpkgs were named "${sourcepkg}-${pkgname}". * xbps-src: changed to look for template files in current directory. That means that most arguments from the targets have been removed. * xbps-src: added a reinstall target, to remove + install. * xbps-src: do not overwrite binpkgs by default, skip them. And more that I forgot because it's a mega-commit that I've been working for some days already... --HG-- extra : convert_revision : 0f466878584d1e6895d2a234f07ea1b2d1e61b3e
25 lines
942 B
Text
25 lines
942 B
Text
# Template file for 'syslinux'
|
|
pkgname=syslinux
|
|
version=3.83
|
|
distfiles="${KERNEL_SITE}/utils/boot/$pkgname/$pkgname-$version.tar.bz2"
|
|
build_style=gnu_makefile
|
|
make_install_args="INSTALLROOT=$XBPS_DESTDIR/$pkgname-$version"
|
|
short_desc="A boot loader for the Linux operating system"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
checksum=9ec84d6dcc188f082a875b69796b196f98ea8c0102b55b03123616a285c2d9f9
|
|
long_desc="
|
|
The SYSLINUX Project covers lightweight bootloaders for floppy media (SYSLINUX),
|
|
network booting (PXELINUX), and bootable \"El Torito\" CD-ROMs (ISOLINUX).
|
|
The project also includes MEMDISK, a tool to boot legacy operating systems
|
|
(such as DOS) from nontraditional media; it is usually used in conjunction with
|
|
PXELINUX and ISOLINUX."
|
|
|
|
Add_dependency build perl
|
|
Add_dependency build nasm
|
|
Add_dependency full glibc
|
|
|
|
pre_build()
|
|
{
|
|
# Disable this file which causes an error.
|
|
sed -i -e 's|win32/syslinux.exe||g' $wrksrc/Makefile
|
|
}
|