blob: cd2d6e00103a22adacd0f9cae874f90e14b1c240 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libconfig
pkgver=1.4.1
pkgrel=0
pkgdesc="a simple library for manipulating structured configuration files"
url="http://www.hyperrealm.com/libconfig/"
license='LGPL'
depends=
makedepends=
source="http://www.hyperrealm.com/$pkgname/$pkgname-$pkgver.tar.gz"
subpackages="$pkgname-doc $pkgname-dev"
_builddir="$srcdir"/$pkgname-$pkgver
build() {
cd "$_builddir"
./configure --prefix=/usr \
--mandir=/usr/share/man \
--disable-cxx
make || return 1
}
package() {
cd "$_builddir"
make -j1 DESTDIR="$pkgdir/" install
}
md5sums="7b2885272802b3ace56d3c8b445a4588 libconfig-1.4.1.tar.gz"
|