diff options
author | root <root@rshg054.dnsready.net> | 2012-01-14 23:15:11 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-14 23:15:11 +0000 |
commit | 2d4aa7f882dac8abb34e973655326c93f584f31f (patch) | |
tree | c9404799d0aea846ee22c16108ef00fe8babbb7a /community/c++-gtk-utils | |
parent | b5f690637837ff269bf5d248ee2dc37ea5236ca8 (diff) |
Sat Jan 14 23:15:11 UTC 2012
Diffstat (limited to 'community/c++-gtk-utils')
-rw-r--r-- | community/c++-gtk-utils/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/c++-gtk-utils/PKGBUILD b/community/c++-gtk-utils/PKGBUILD new file mode 100644 index 000000000..ce57480cc --- /dev/null +++ b/community/c++-gtk-utils/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 61994 2012-01-13 20:36:39Z giovanni $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> + +pkgname=c++-gtk-utils +pkgver=2.0.4 +pkgrel=1 +pkgdesc="Classes and functions for programming in GTK+" +arch=('i686' 'x86_64') +url="http://cxx-gtk-utils.sourceforge.net/" +license=('LGPL2.1') +depends=('gtk3') +options=('!libtool') +source=("http://downloads.sourceforge.net/project/cxx-gtk-utils/cxx-gtk-utils/${pkgver}/${pkgname}-${pkgver}.tar.gz") +md5sums=('349b14a45befcaad629820c3313c9e1d') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure --prefix=/usr \ + --disable-rpath \ + --disable-static + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir/" install +} |