blob: 6a57113b78bdf0d8f2092a4f333600c28edef76a (
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
|
# maintainer: dialuplama <dialuplama@teknik.io>
# co-maintainer: muhas <muhas@mail.ru>
pkgname=libdshconfig
pkgver=0.20.13
pkgrel=2
pkgdesc="Library for parsing dsh-style configuration files. Required by dsh and other applications."
arch=('any')
url="https://www.netfort.gr.jp/~dancer/software/dsh.html"
license=('GPL2')
depends=('glibc')
source=("https://www.netfort.gr.jp/~dancer/software/downloads/$pkgname-$pkgver.tar.gz")
md5sums=('cb9db850231091a3a848e654d9f0806b')
build() {
cd "$pkgname-$pkgver"
./configure \
--prefix=/usr \
--libdir=/usr/lib
make
}
check() {
cd "$pkgname-$pkgver"
make -k check
}
package() {
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir/" install
}
|