summaryrefslogtreecommitdiff
path: root/community-testing/nemiver/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-24 00:01:27 +0000
committerroot <root@rshg054.dnsready.net>2012-04-24 00:01:27 +0000
commit264f2be5f341b9946381d84ebaffc95f9199990b (patch)
tree21ee2b5c6a55b957afc2674f59d66a33635e5705 /community-testing/nemiver/PKGBUILD
parentf81dfba1507be388ae1b2c2437fccad46aadc950 (diff)
Tue Apr 24 00:01:27 UTC 2012
Diffstat (limited to 'community-testing/nemiver/PKGBUILD')
-rw-r--r--community-testing/nemiver/PKGBUILD42
1 files changed, 42 insertions, 0 deletions
diff --git a/community-testing/nemiver/PKGBUILD b/community-testing/nemiver/PKGBUILD
new file mode 100644
index 000000000..16ed100c9
--- /dev/null
+++ b/community-testing/nemiver/PKGBUILD
@@ -0,0 +1,42 @@
+# $Id: PKGBUILD 69718 2012-04-22 23:49:26Z heftig $
+# Maintainer: Alexander Rødseth <rodseth@gmail.com>
+# Contributor: jordz <jordz@archlinux.us>
+
+pkgname=nemiver
+pkgver=0.9.2
+pkgrel=2
+pkgdesc="C/C++ debugger for GNOME"
+arch=('x86_64' 'i686')
+license=('GPL')
+url="http://www.gnome.org/projects/nemiver/"
+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/nemiver/0.9/$pkgname-$pkgver.tar.xz")
+options=('!libtool' '!emptydirs')
+sha256sums=('770392965a45d728b798da3c6111c4e7cb55d51f109a78aedead99083f8e2520')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+
+ ./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 DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et: