summaryrefslogtreecommitdiff
path: root/community/nemiver/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/nemiver/PKGBUILD')
-rw-r--r--community/nemiver/PKGBUILD32
1 files changed, 17 insertions, 15 deletions
diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD
index 6622ff29c..95cf51837 100644
--- a/community/nemiver/PKGBUILD
+++ b/community/nemiver/PKGBUILD
@@ -1,39 +1,41 @@
-# $Id: PKGBUILD 59670 2011-11-29 09:31:30Z arodseth $
+# $Id: PKGBUILD 61581 2012-01-03 18:29:08Z arodseth $
# Maintainer: Alexander Rødseth <rodseth@gmail.com>
# Contributor: jordz <jordz@archlinux.us>
pkgname=nemiver
pkgver=0.9.1
-pkgrel=1
+pkgrel=2
pkgdesc="C/C++ debugger for GNOME"
arch=('x86_64' 'i686')
license=('GPL')
url="http://www.gnome.org/projects/nemiver/"
-depends=('gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'gconf' 'dconf')
+depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'dconf' 'gsettings-desktop-schemas')
makedepends=('boost' 'intltool' 'gnome-doc-utils')
install=nemiver.install
-source=("http://ftp.acc.umu.se/pub/GNOME/sources/$pkgname/0.9/$pkgname-$pkgver.tar.xz")
-options=('!libtool' '!emptydirs')
+source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz")
+options=(!libtool !emptydirs)
md5sums=('9c0275e7a2d9f9fb48f279387969281b')
build() {
cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --sysconfdir=/etc \
- --localstatedir=/var --disable-static \
- --with-boost --disable-scrollkeeper \
- --enable-symsvis=yes --enable-gio=yes \
- --enable-memoryview=yes
+ ./configure \
+ --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --disable-static \
+ --with-boost \
+ --disable-scrollkeeper \
+ --enable-symsvis=yes \
+ --enable-memoryview=yes \
+ --disable-schemas-compile \
+ --enable-gsettings=yes
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
- make -j1 GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 DESTDIR="$pkgdir" install
- install -m755 -d "$pkgdir/usr/share/gconf/schemas"
- gconf-merge-schema "$pkgdir/usr/share/gconf/schemas/$pkgname.schemas" \
- --domain nemiver "$pkgdir"/etc/gconf/schemas/*.schemas
- rm -f "$pkgdir"/etc/gconf/schemas/*.schemas
+ make DESTDIR="$pkgdir" install
}
# vim:set ts=2 sw=2 et: