diff options
Diffstat (limited to 'gnome-unstable/gcalctool/PKGBUILD')
-rw-r--r-- | gnome-unstable/gcalctool/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnome-unstable/gcalctool/PKGBUILD b/gnome-unstable/gcalctool/PKGBUILD new file mode 100644 index 000000000..f2448bee1 --- /dev/null +++ b/gnome-unstable/gcalctool/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 152953 2012-03-10 19:50:51Z heftig $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=gcalctool +pkgver=6.3.5 +pkgrel=1 +pkgdesc="GNOME Scientific calculator" +arch=('i686' 'x86_64') +license=('GPL') +depends=('gtk3' 'dconf') +makedepends=('intltool' 'yelp-tools') +groups=('gnome-extra') +options=(!emptydirs) +url="http://www.gnome.org" +install=gcalctool.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/${pkgver%.*}/${pkgname}-${pkgver}.tar.xz) +sha256sums=('03dabdb4c3841aff6e75a5d7a57cb3884445b66b9680c7675cd83f08c8cac4e7') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr --sysconfdir=/etc --disable-schemas-compile \ + --localstatedir=/var + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="${pkgdir}" install +} |