diff options
Diffstat (limited to 'tomboy/Pkgfile')
-rw-r--r-- | tomboy/Pkgfile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tomboy/Pkgfile b/tomboy/Pkgfile new file mode 100644 index 0000000..2d22519 --- /dev/null +++ b/tomboy/Pkgfile @@ -0,0 +1,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.3 +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 +} + |