blob: a96a14a9f98ed9f9a9524c680d7fc4a7988986d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Maintainer: neocrust
pkgname=mate-text-editor
pkgver=1.1.0
pkgrel=1
pkgdesc="An powerfull text editor for MATE"
arch=('i686' 'x86_64')
license=('GPL')
depends=('mate-conf' 'gtk2' 'gtksourceview2' 'libxml2' 'pygtksourceview2' 'enchant')
makedepends=('pkgconfig' 'mate-doc-utils' 'intltool')
options=('!emptydirs' '!libtool')
conflicts=('pluma')
url="http://matsusoft.com.ar/projects"
groups=('mate-extras')
install=mate-text-editor.install
source=()
sha256sums=()
build() {
cd "${srcdir}/../../../"
PYTHON=/usr/bin/python2 ./autogen.sh --prefix=/usr --sysconfdir=/etc \
--localstatedir=/var --libexecdir=/usr/lib/ \
--disable-scrollkeeper --enable-python || return 1
make || return 1
}
package() {
cd "${srcdir}/../../../"
make MATECONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="${pkgdir}" install || return 1
install -m755 -d "${pkgdir}/usr/share/mateconf/schemas"
mateconf-merge-schema "${pkgdir}/usr/share/mateconf/schemas/${pkgname}.schemas" --domain ${pkgname} ${pkgdir}/etc/mateconf/schemas/*.schemas || return 1
rm -f ${pkgdir}/etc/mateconf/schemas/*.schemas
}
|