mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-06 01:02:26 +01:00
Since abuild v2.22.0, these are removed automatically unless 'libtool' option has been specified.
39 lines
1011 B
Plaintext
39 lines
1011 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libconfig
|
|
pkgver=1.5
|
|
pkgrel=0
|
|
pkgdesc="a simple library for manipulating structured configuration files"
|
|
url="http://www.hyperrealm.com/libconfig/"
|
|
arch="all"
|
|
license='LGPL'
|
|
depends=
|
|
makedepends=
|
|
source="http://www.hyperrealm.com/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
|
|
_builddir="$srcdir"/$pkgname-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--disable-cxx \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make -j1 DESTDIR="$pkgdir/" install
|
|
}
|
|
|
|
md5sums="a939c4990d74e6fc1ee62be05716f633 libconfig-1.5.tar.gz"
|
|
sha256sums="e31daa390d8e4461c8830512fe2e13ba1a3d6a02a2305a02429eec61e68703f6 libconfig-1.5.tar.gz"
|
|
sha512sums="16bead52ee8c880b25fd1ee6fa83c115dc51830f2f7954389bd8b72cc0e6fc05fc63fe415bd929851894a9f3a1127d51cfc4223149514246e9566305556b7bcd libconfig-1.5.tar.gz"
|