blob: a10813dd8c55b5fbd47790f3cca066226501e824 (
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
28
29
30
31
32
33
34
|
# Maintainer: grufo <madmurphy333@gmail.com>
pkgname=libconfini
pkgver=0.9
pkgrel=1
pkgdesc='Yet another INI parser'
arch=('i686' 'x86_64')
url="https://github.com/madmurphy/libconfini/"
license=("GPL")
source=("https://github.com/madmurphy/${pkgname}/archive/${pkgver}.tar.gz")
md5sums=('e33e995ad07f9d2a106378aeb1c1e2e0')
prepare() {
cd "${srcdir}/${pkgname}-${pkgver}"
./autogen.sh
./configure --prefix=/usr
}
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="$pkgdir" install
}
|