diff options
author | root <root@rshg054.dnsready.net> | 2013-05-01 00:10:22 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-05-01 00:10:22 -0700 |
commit | 1b05006cb143959d080a200fe11891c9f5caf32c (patch) | |
tree | a32d98ba49468916ed7812da6ddc7137f2ab3b85 /community/nemiver | |
parent | 08483ba66f8da1bbec05f93e5e3493d3794c02bb (diff) |
Wed May 1 00:10:21 PDT 2013
Diffstat (limited to 'community/nemiver')
-rw-r--r-- | community/nemiver/PKGBUILD | 7 | ||||
-rw-r--r-- | community/nemiver/nemiver.install | 14 |
2 files changed, 18 insertions, 3 deletions
diff --git a/community/nemiver/PKGBUILD b/community/nemiver/PKGBUILD index 1c36a5330..daa32c433 100644 --- a/community/nemiver/PKGBUILD +++ b/community/nemiver/PKGBUILD @@ -1,14 +1,15 @@ -# $Id: PKGBUILD 88693 2013-04-21 22:17:15Z heftig $ +# $Id: PKGBUILD 89588 2013-04-30 08:28:34Z arodseth $ # Maintainer: Alexander Rødseth <rodseth@gmail.com> # Contributor: jordz <jordz@archlinux.us> pkgname=nemiver pkgver=0.9.4 -pkgrel=2 +pkgrel=3 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' 'dconf' 'gsettings-desktop-schemas') makedepends=('boost' 'intltool' 'itstool') source=("http://ftp.acc.umu.se/pub/GNOME/sources/nemiver/0.9/$pkgname-$pkgver.tar.xz") @@ -27,8 +28,8 @@ build() { --disable-scrollkeeper \ --enable-symsvis=yes \ --enable-memoryview=yes \ - --disable-schemas-compile \ --enable-gsettings=yes +# --disable-schemas-compile \ make } diff --git a/community/nemiver/nemiver.install b/community/nemiver/nemiver.install new file mode 100644 index 000000000..aabb4b360 --- /dev/null +++ b/community/nemiver/nemiver.install @@ -0,0 +1,14 @@ +post_install() { + glib-compile-schemas /usr/share/glib-2.0/schemas + gtk-update-icon-cache -q -t -f /usr/share/icons/hicolor +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} + +# vim:set ts=2 sw=2 et: |