mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
27 lines
1.1 KiB
Bash
27 lines
1.1 KiB
Bash
# $Id: PKGBUILD 1156 2009-08-12 23:18:58Z ibiru $
|
|
# Contributor: uastasi <uastasi@archlinux.us>
|
|
# Maintainer: Biru Ionut <biru.ionut at gmail.com>
|
|
pkgname=gnote
|
|
pkgver=0.6.2
|
|
pkgrel=1
|
|
pkgdesc="Experimental port of Tomboy to C++ "
|
|
arch=('i686' 'x86_64')
|
|
url="http://live.gnome.org/Gnote"
|
|
license=('GPL')
|
|
depends=('boost' 'gtkspell' 'libpanelappletmm' 'libxslt')
|
|
makedepends=('intltool' 'gnome-doc-utils')
|
|
options=('!libtool')
|
|
install=gnote.install
|
|
source=(http://ftp.gnome.org/pub/gnome/sources/$pkgname/0.6/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --sysconfdir=/etc \
|
|
--localstatedir=/var --disable-scrollkeeper --disable-static || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 install || return 1
|
|
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 || return 1
|
|
rm -f ${pkgdir}/etc/gconf/schemas/*.schemas
|
|
}
|
|
md5sums=('ee016ad4d12a8e9914582ef7da5656d7')
|