xbps-src:
* ALWAYS use the static bins, to avoid breakage in the chroot.
* Remove XBPS_FETCH_CMD. Use xbps-fetch (static) now that it's
useful to download all distfiles in xbps-base-system.
* Use busybox in the chroot and create links in /usr/local/bin
at creation time. This helps to remove many packages that
had problems with host/target libs (acl, attr, libarchive, etc).
build templates:
* Add explicit gettext and texinfo build dependencies in all
packages that need them, because they aren't built anymore
by xbps-base-chroot.
* Fixed some packages using build_style=gnu_makefile, that were
broken because pre/post_configure() is not executed for a while,
they should use pre/post_build() instead.
--HG--
extra : convert_revision : 0eaaf4917fd824710d0895e0c984bbc236b0cdf8
29 lines
901 B
Plaintext
29 lines
901 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 version kernel-headers)"
|
|
|
|
cd $wrksrc || return 1
|
|
ln -s /usr/src/kernel-headers-$kver linux
|
|
}
|