diff options
Diffstat (limited to 'community/nemiver/PKGBUILD')
-rw-r--r-- | community/nemiver/PKGBUILD | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD new file mode 100644 index 000000000..73274bfcd --- /dev/null +++ b/community/nemiver/PKGBUILD @@ -0,0 +1,42 @@ +# $Id: PKGBUILD 90245 2013-05-09 23:52:58Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: jordz <jordz@archlinux.us> + +pkgname=nemiver +pkgver=0.9.4 +pkgrel=4 +pkgdesc='C/C++ debugger for GNOME' +arch=('x86_64' 'i686') +license=('GPL') +url='http://www.gnome.org/projects/nemiver/' +install="$pkgname.install" +depends=('gdlmm' 'gdb' 'gtksourceviewmm' 'libgtop' 'vte3' 'ghex' 'gsettings-desktop-schemas') +makedepends=('boost' 'intltool' 'itstool') +source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz") +options=('!libtool' '!emptydirs') +sha256sums=('12cc5b6092ba720f2524f59928bee4d736e5e5ffeeffb6fd06f99695f17d683f') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --disable-static \ + --with-boost \ + --disable-scrollkeeper \ + --enable-symsvis=yes \ + --enable-memoryview=yes \ + --enable-gsettings=yes \ + --disable-schemas-compile + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make DESTDIR="$pkgdir" install +} + +# vim:set ts=2 sw=2 et: |