diff options
Diffstat (limited to 'community/mate-character-map/PKGBUILD')
-rw-r--r-- | community/mate-character-map/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/mate-character-map/PKGBUILD b/community/mate-character-map/PKGBUILD new file mode 100644 index 000000000..f7e511a3d --- /dev/null +++ b/community/mate-character-map/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 104218 2014-01-16 17:20:32Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> +# Contributor: Giovanni "Talorno" Ricciardi <kar98k.sniper@gmail.com> + +pkgname=mate-character-map +pkgver=1.6.0 +pkgrel=5 +pkgdesc="MATE Unicode Charmap" +url="http://mate-desktop.org" +arch=('i686' 'x86_64') +license=('GPL') +depends=('dconf' 'gtk2' 'pygtk' 'python2') +makedepends=('gobject-introspection' '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=('e378e26ebe493d3f849771d10930504b8980448e') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + PYTHON=/usr/bin/python2 ./autogen.sh \ + --prefix=/usr \ + --enable-charmap \ + --enable-python-bindings \ + --enable-introspection \ + --disable-static \ + --disable-scrollkeeper + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |