diff options
author | aurelien <aurelien@cwb.io> | 2012-11-14 15:55:30 +0100 |
---|---|---|
committer | aurelien <aurelien@cwb.io> | 2012-11-14 15:55:30 +0100 |
commit | 3003c34a15ad9b553e8511102aebab469886754f (patch) | |
tree | aa770780b1ddb1b6b65fa73550ef5818b2cfbef8 /pcr/libdshconfig | |
parent | 75dae7d841b7e33076cca018f34c0d63b07282a1 (diff) | |
download | abslibre-3003c34a15ad9b553e8511102aebab469886754f.tar.gz abslibre-3003c34a15ad9b553e8511102aebab469886754f.tar.bz2 abslibre-3003c34a15ad9b553e8511102aebab469886754f.zip |
+ dsh + libdshconfig
Diffstat (limited to 'pcr/libdshconfig')
-rw-r--r-- | pcr/libdshconfig/PKGBUILD | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/pcr/libdshconfig/PKGBUILD b/pcr/libdshconfig/PKGBUILD new file mode 100644 index 000000000..adf9d18b2 --- /dev/null +++ b/pcr/libdshconfig/PKGBUILD @@ -0,0 +1,20 @@ +# Contributor: SkiltZ <skiltz@free.fr> +# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io> + +pkgname=libdshconfig +pkgver=0.20.9 +pkgrel=2 +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/libdshconfig-$pkgver.tar.gz) + + +build() { + cd $startdir/src/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make prefix=$startdir/pkg/usr install + } |