diff options
author | James Meyer <james.meyer@operamail.com> | 2011-11-25 17:49:46 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2011-11-25 17:49:46 (GMT) |
commit | 0fd8efd33c6e0d564960f76dbea56ee91fe3cf93 (patch) | |
tree | d985525a0ed9ba532048fa10df145e6420c614c4 /abs/core/mv/confuse | |
parent | 811cc6e0d1159254b93e673f6d0088e8157ddee4 (diff) | |
download | linhes_pkgbuild-0fd8efd33c6e0d564960f76dbea56ee91fe3cf93.zip linhes_pkgbuild-0fd8efd33c6e0d564960f76dbea56ee91fe3cf93.tar.gz linhes_pkgbuild-0fd8efd33c6e0d564960f76dbea56ee91fe3cf93.tar.bz2 |
confuse & tilda: initial include.
confuse is required by tilda.
tilda is another "xterm" like terminal that is always present and hides itself with a hotkey
Diffstat (limited to 'abs/core/mv/confuse')
-rw-r--r-- | abs/core/mv/confuse/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/abs/core/mv/confuse/PKGBUILD b/abs/core/mv/confuse/PKGBUILD new file mode 100644 index 0000000..6f713df --- /dev/null +++ b/abs/core/mv/confuse/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 17258 2010-05-22 14:32:23Z ibiru $ +# Maintainer : Ionut Biru <ibiru@archlinux.org> +# Contributor: Roman Kyrylych <roman@archlinux.org> +# Contributor: Alexander Mieland (dma147) <dma147@linux-stats.org> + +pkgname=confuse +pkgver=2.7 +pkgrel=1 +pkgdesc="C-library for parsing configuration files" +arch=('i686' 'x86_64') +url="http://www.nongnu.org/confuse" +license=('LGPL') +depends=('glibc') +source=(http://savannah.nongnu.org/download/${pkgname}/${pkgname}-${pkgver}.tar.gz) +options=('!libtool' '!emptydirs') +md5sums=('45932fdeeccbb9ef4228f1c1a25e9c8f') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr --enable-shared + make || return 1 + make DESTDIR="${pkgdir}" install +} |