blob: 3612b96f7989444467df99d7dd9830e11fa1e859 (
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
|
# 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
# Run on: mono,dbus-sharp-glib,mono-addins,evolution,gmime
name=tomboy
version=1.7.5
release=1
source=(http://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz )
build() {
cd $name-$version
./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
}
|