25 lines
862 B
Bash
25 lines
862 B
Bash
# Template file for 'musl-obstack'
|
|
pkgname=musl-obstack
|
|
version=1.1
|
|
revision=2
|
|
build_style=gnu-configure
|
|
hostmakedepends="automake libtool"
|
|
configure_args="--disable-shared"
|
|
only_for_archs="aarch64-musl armv5tel-musl armv6l-musl armv7l-musl i686-musl mips-musl mipshf-musl mipsel-musl mipselhf-musl x86_64-musl"
|
|
short_desc="Implementation of obstack for musl libc"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
license="GPL-2"
|
|
homepage="https://github.com/pullmoll/musl-obstack"
|
|
distfiles="https://github.com/pullmoll/${pkgname}/archive/v${version}.tar.gz>${pkgname}-${version}.tar.gz"
|
|
checksum=52a216613e7d55e8725e43d017bb2d49a4b1ffa1e06da472f03c7f9875df7d0d
|
|
|
|
CFLAGS="-fPIC"
|
|
pre_configure() {
|
|
sed -i "/pkgconfig_DATA/i pkgconfigdir=\$(libdir)/pkgconfig" Makefile.am
|
|
./bootstrap.sh
|
|
}
|
|
|
|
post_install() {
|
|
vinstall ${pkgname}.pc 644 usr/lib/pkgconfig
|
|
}
|