vp-build/templates/klibc/template
Juan RP 2c53035fb7 Added support for extended pkgdep version matching.
xbps from launchpad head branch has gained support for extended
pkg version matching, as specified in:

https://blueprints.launchpad.net/xbps/+spec/improved-version-matching

Now it's required to specify the operator(s) for required versions
in the depends files and "Add_dependency" option in build templates.

xbps-src now requires xbps utils 20091107.

--HG--
extra : convert_revision : fc09fa707483a75e0b6f68445721fc1a9166cdad
2009-11-07 05:01:00 +01:00

29 lines
908 B
Plaintext

# Template file for 'klibc'
pkgname=klibc
version=1.5.15
distfiles="${KERNEL_SITE}/libs/klibc/Testing/klibc-$version.tar.bz2"
build_style=gnu_makefile
make_install_target="INSTALLROOT=$XBPS_DESTDIR/$pkgname-$version install"
short_desc="Minimal libc subset for use with initramfs"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=8b5334ef88b075f374b031695181b4302c3e5621bf2737a39fdf28262b0f80f4
long_desc="
klibc is intended to be a minimalistic libc subset for use with initramfs.
It is deliberately written for small size, minimal entanglement, and
portability, not speed. It is definitely a work in progress and a lot of
things are still missing."
subpackages="devel utils"
Add_dependency build kernel
Add_dependency build bison
Add_dependency build perl
pre_build()
{
local kver="$(${XBPS_PKGDB_CMD} version kernel-headers)"
cd $wrksrc || return 1
ln -s /usr/src/kernel-headers-$kver linux
}