summaryrefslogtreecommitdiff
path: root/pcr/libdshconfig/PKGBUILD
blob: 03e60f0cc99e3c8fe87409bf667211fb47fbbc2c (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
# Contributor (Arch): SkiltZ <skiltz@free.fr>
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>

pkgname=libdshconfig
pkgver=0.20.9 
pkgrel=2.1
pkgdesc="Library for parsing dsh-style configuration files. Required by dsh and other applications."
arch=(i686 x86_64)
url="http://www.netfort.gr.jp/~dancer/software/dsh.html.en"
license=('GPL')
depends=('glibc')
source=(http://www.netfort.gr.jp/~dancer/software/downloads/$pkgname-$pkgver.tar.gz)
md5sums=('c3fabfae1782c17ee989373c2f6a73c1')

build() {
  cd $srcdir/$pkgname-$pkgver
  ./configure --prefix=/usr
  make
}

package() {
  cd $srcdir/$pkgname-$pkgver
  make DESTDIR="$pkgdir/" install
}