diff options
Diffstat (limited to 'pcr/libdshconfig')
-rw-r--r-- | pcr/libdshconfig/PKGBUILD | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/pcr/libdshconfig/PKGBUILD b/pcr/libdshconfig/PKGBUILD index 03e60f0cc..46a5dc2a6 100644 --- a/pcr/libdshconfig/PKGBUILD +++ b/pcr/libdshconfig/PKGBUILD @@ -1,24 +1,25 @@ # Contributor (Arch): SkiltZ <skiltz@free.fr> -# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> - +# Maintainer: Omar Vega Ramos <ovruni@gnu.org.pe> pkgname=libdshconfig pkgver=0.20.9 -pkgrel=2.1 +pkgrel=3 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) +source=(http://www.netfort.gr.jp/~dancer/software/downloads/libdshconfig-$pkgver.tar.gz) + md5sums=('c3fabfae1782c17ee989373c2f6a73c1') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr - make +cd "$srcdir/$pkgname-$pkgver" +./configure --prefix=/usr +make } package() { - cd $srcdir/$pkgname-$pkgver - make DESTDIR="$pkgdir/" install -}
\ No newline at end of file +cd "$srcdir/$pkgname-$pkgver" +make DESTDIR="$pkgdir/" install +} + |