diff options
Diffstat (limited to 'community/mate-text-editor/PKGBUILD')
-rw-r--r-- | community/mate-text-editor/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/community/mate-text-editor/PKGBUILD b/community/mate-text-editor/PKGBUILD new file mode 100644 index 000000000..2c384761e --- /dev/null +++ b/community/mate-text-editor/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 104251 2014-01-16 18:10:47Z flexiondotorg $ +# Maintainer : Martin Wimpress <code@flexion.org> +# Contributor: Giovanni Ricciardi <kar98k.sniper@gmail.com> + +pkgname=mate-text-editor +pkgver=1.6.2 +pkgrel=1 +pkgdesc="A powerful text editor for MATE" +url="http://mate-desktop.org" +arch=('i686' 'x86_64') +license=('GPL') +depends=('desktop-file-utils' 'enchant' 'gtk2' 'gtksourceview2' 'iso-codes' + 'libsm' 'mate-desktop' 'mate-file-manager' 'python2' 'python2-gobject2' + 'pygtksourceview2') +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=('64e34ae5724608fcc5adff195515b74e1e3e5bd6') +install=${pkgname}.install + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + PYTHON=/usr/bin/python2 ./configure \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --enable-python \ + --disable-scrollkeeper + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install +} |