musl: update to 0.9.12.
This commit is contained in:
parent
91751d4a18
commit
a04a2b611e
1 changed files with 9 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
# Template file for 'musl'.
|
# Template file for 'musl'.
|
||||||
pkgname=musl
|
pkgname=musl
|
||||||
version=0.9.9
|
version=0.9.12
|
||||||
revision=1
|
revision=1
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--prefix=/usr --disable-gcc-wrapper"
|
configure_args="--prefix=/usr --disable-gcc-wrapper"
|
||||||
|
@ -9,19 +9,23 @@ maintainer="Juan RP <xtraeme@gmail.com>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
homepage="http://www.musl-libc.org/"
|
homepage="http://www.musl-libc.org/"
|
||||||
distfiles="http://www.musl-libc.org/releases/musl-${version}.tar.gz"
|
distfiles="http://www.musl-libc.org/releases/musl-${version}.tar.gz"
|
||||||
checksum=91f67d4e1e696df344c93b46bfcb1f6ad6d820e6ae544e3673f496e2d308f492
|
checksum=72353f9e1f2fdaf5e88223dcd1cfa5555f5a364eb5e4a9967de1fd44cc4c6d3e
|
||||||
long_desc="
|
long_desc="
|
||||||
A new standard library to power a new generation of Linux-based devices.
|
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
|
musl is lightweight, fast, simple, free, and strives to be correct in the
|
||||||
sense of standards-conformance and safety."
|
sense of standards-conformance and safety."
|
||||||
|
|
||||||
post_install() {
|
do_install() {
|
||||||
vmove "lib/*" usr/lib
|
# Move everything to /usr.
|
||||||
|
vmkdir usr/lib
|
||||||
|
ln -sfr ${DESTDIR}/usr/lib ${DESTDIR}/lib
|
||||||
|
make DESTDIR=${DESTDIR} install
|
||||||
|
rm ${DESTDIR}/lib
|
||||||
}
|
}
|
||||||
|
|
||||||
musl_package() {
|
musl_package() {
|
||||||
conflicts="glibc>=0"
|
conflicts="glibc>=0"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr
|
vmove all
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue