diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gnote/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gnote/PKGBUILD')
-rw-r--r-- | community/gnote/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/community/gnote/PKGBUILD b/community/gnote/PKGBUILD new file mode 100644 index 000000000..d2fb73ada --- /dev/null +++ b/community/gnote/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 41039 2011-03-03 11:13:48Z ibiru $ +# Maintainer: Ionut Biru <ibiru@archlinux.org> +# Contributor: uastasi <uastasi@archlinux.us> +pkgname=gnote +pkgver=0.7.3 +pkgrel=3 +pkgdesc="Experimental port of Tomboy to C++ " +arch=('i686' 'x86_64') +url="http://live.gnome.org/Gnote" +license=('GPL') +depends=('boost-libs' 'gtkspell' 'libpanelappletmm' 'libxslt') +makedepends=('intltool' 'gnome-doc-utils' 'boost') +options=('!libtool') +install=gnote.install +source=(http://ftp.gnome.org/pub/gnome/sources/${pkgname}/0.7/${pkgname}-${pkgver}.tar.bz2) +sha256sums=('4853315711baf7647cdae4c2f7d23e22e2b13322605efe3dd98796a06f928321') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + export CXXFLAGS="${CXXFLAGS} -DBOOST_FILESYSTEM_VERSION=2" + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --libexecdir=/usr/lib/gnote \ + --disable-scrollkeeper \ + --disable-schemas-install \ + --disable-static + make + make DESTDIR="${pkgdir}" install + install -m755 -d "${pkgdir}/usr/share/gconf/schemas" + gconf-merge-schema "${pkgdir}/usr/share/gconf/schemas/${pkgname}.schemas" --domain gnote ${pkgdir}/etc/gconf/schemas/*.schemas + rm -f ${pkgdir}/etc/gconf/schemas/*.schemas +} |