summaryrefslogtreecommitdiffstats
path: root/tomboy/Pkgfile
blob: c71e49a917f089aea987e2dd926b65dab48d8ebc (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
# Description: Desktop note-taking application for Linux and Unix
# URL: http://www.gnome.org/projects/tomboy/
# Maintainer: NuTyX Gnome team
# Packager: piernov <piernov@piernov.org>
# Depends on: mono, dbus-sharp-glib, mono-addins, evolution, gmime, gnome-sharp
# Run on: mono,dbus-sharp-glib,mono-addins,evolution,gmime,gnome-sharp

name=tomboy
version=1.11.2
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz
	gmime2.6.patch)

build() {
	cd $name-$version
	patch -p1 < ../gmime2.6.patch
	autoreconf -vfi
	./configure --prefix=/usr \
		--sysconfdir=/etc \
		--localstatedir=/var \
		--disable-schemas-install \
		--disable-update-mimedb \
		--enable-evolution=yes \
		--enable-gnome
#		--enable-panel-applet=yes \
	unset MAKEFLAGS	
	make -j1
	make GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR=$PKG install

	install -m755 -d $PKG/usr/share/gconf/schemas
	gconf-merge-schema $PKG/usr/share/gconf/schemas/$name.schemas --domain tomboy $PKG/etc/gconf/schemas/*.schemas
	rm -f $PKG/etc/gconf/schemas/*.schemas
}