diff options
Diffstat (limited to 'community/mate-calc/PKGBUILD')
-rw-r--r-- | community/mate-calc/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community/mate-calc/PKGBUILD b/community/mate-calc/PKGBUILD new file mode 100644 index 000000000..d48ea6d52 --- /dev/null +++ b/community/mate-calc/PKGBUILD @@ -0,0 +1,29 @@ +# $Id: PKGBUILD 104914 2014-01-28 10:51:00Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> + +pkgname=mate-calc +pkgver=1.6.1 +pkgrel=1 +pkgdesc="Calculator for the Mate desktop environment" +url="http://mate-desktop.org" +arch=('i686' 'x86_64') +license=('LGPL' 'GPL') +depends=('dconf' 'gtk2') +makedepends=('mate-common' 'mate-doc-utils' 'perl-xml-parser') +options=('!emptydirs') +groups=('mate-extra') +source=("http://pub.mate-desktop.org/releases/1.6/${pkgname}-${pkgver}.tar.xz") +sha1sums=('dca1568748e42d4a019d7cf8effe1be80b20b82b') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure \ + --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |