29 lines
874 B
Text
29 lines
874 B
Text
# Template file for 'musl-bootstrap'.
|
|
pkgname=musl-bootstrap
|
|
version=0.9.9
|
|
revision=1
|
|
wrksrc="musl-${version}"
|
|
build_style=gnu-configure
|
|
configure_args="--prefix=/usr/lib/musl"
|
|
short_desc="The musl libc (bootstrap pkg)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="MIT"
|
|
homepage="http://www.musl-libc.org/"
|
|
distfiles="http://www.musl-libc.org/releases/musl-${version}.tar.gz"
|
|
checksum=91f67d4e1e696df344c93b46bfcb1f6ad6d820e6ae544e3673f496e2d308f492
|
|
long_desc="
|
|
A new standard library to power a new generation of Linux-based devices.
|
|
musl is lightweight, fast, simple, free, and strives to be correct in the
|
|
sense of standards-conformance and safety."
|
|
|
|
post_install() {
|
|
mv ${DESTDIR}/lib/* ${DESTDIR}/usr/lib/
|
|
vmkdir usr/bin
|
|
ln -sfr ${DESTDIR}/usr/lib/musl/bin/musl-gcc ${DESTDIR}/usr/bin/musl-gcc
|
|
}
|
|
|
|
musl-bootstrap_package() {
|
|
pkg_install() {
|
|
vmove usr
|
|
}
|
|
}
|