blob: a020bd8cb36c97e52d35e019af61437f3ef1622d (
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
|
# Maintainer: grufo <madmurphy333 AT gmail DOT com>
pkgname='libconfini'
pkgver='1.16.4'
pkgrel=1
pkgdesc='Yet another INI parser'
arch=('i686' 'x86_64')
url='https://madmurphy.github.io/libconfini'
license=('GPL')
conflicts=("${pkgname}-git" "${pkgname}-bin")
source=("https://github.com/madmurphy/${pkgname}/releases/download/${pkgver}/${pkgname}-${pkgver}-with-configure.tar.gz")
sha256sums=('f4ba881e68d0d14f4f11f27c7dd9a9567c549f1bf155f4f8158119fb9bc9efd6')
build() {
cd "${srcdir}/${pkgname}-${pkgver}-with-configure"
./configure --prefix=/usr
make
}
check() {
cd "${srcdir}/${pkgname}-${pkgver}-with-configure"
make check
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}-with-configure"
make DESTDIR="${pkgdir}" install
}
|