diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-17 03:43:05 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-17 03:43:05 +0000 |
commit | 953eead14ccfe47904e73cee9cea6e1255f57356 (patch) | |
tree | 8727303ca854032eb046995d052805c969755f30 /community/mate-calc | |
parent | b296a78e1469d58c52acc47586bd5bb84f25fc0f (diff) |
Fri Jan 17 03:37:47 UTC 2014
Diffstat (limited to 'community/mate-calc')
-rw-r--r-- | community/mate-calc/PKGBUILD | 31 | ||||
-rw-r--r-- | community/mate-calc/mate-calc.install | 11 |
2 files changed, 42 insertions, 0 deletions
diff --git a/community/mate-calc/PKGBUILD b/community/mate-calc/PKGBUILD new file mode 100644 index 000000000..b29109c66 --- /dev/null +++ b/community/mate-calc/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 104222 2014-01-16 17:33:47Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> +# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> +# Contributor: Xpander <xpander0@gmail.com> + +pkgname=mate-calc +pkgver=1.6.0 +pkgrel=4 +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=('c793118595cd370ccca9875880e0e6760f6c5a08') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + ./autogen.sh \ + --prefix=/usr + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} diff --git a/community/mate-calc/mate-calc.install b/community/mate-calc/mate-calc.install new file mode 100644 index 000000000..3a06d45b9 --- /dev/null +++ b/community/mate-calc/mate-calc.install @@ -0,0 +1,11 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas/ +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |