diff options
Diffstat (limited to 'pcr/glogg')
-rw-r--r-- | pcr/glogg/PKGBUILD | 26 | ||||
-rw-r--r-- | pcr/glogg/glogg.install | 12 |
2 files changed, 38 insertions, 0 deletions
diff --git a/pcr/glogg/PKGBUILD b/pcr/glogg/PKGBUILD new file mode 100644 index 000000000..c45bb63c4 --- /dev/null +++ b/pcr/glogg/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer (Arch): speps <speps at aur dot archlinux dot org> + +pkgname=glogg +pkgver=1.0.2 +pkgrel=1 +pkgdesc="A multi-platform Qt GUI application to browse and search through long or complex log files." +arch=(i686 x86_64) +url="http://glogg.bonnefon.org/" +license=('GPL3') +depends=('qt4' 'boost-libs') +makedepends=('boost') +install="$pkgname.install" +source=("$url/files/$pkgname-$pkgver.tar.gz") +md5sums=('d6d9bb70ed50a38c5fa9114d71b52d3d') + +build() { + cd $pkgname-$pkgver + qmake-qt4 && make +} + +package() { + cd $pkgname-$pkgver + make install INSTALL_ROOT="$pkgdir/usr" +} + +# vim:set ts=2 sw=2 et: diff --git a/pcr/glogg/glogg.install b/pcr/glogg/glogg.install new file mode 100644 index 000000000..293ff852a --- /dev/null +++ b/pcr/glogg/glogg.install @@ -0,0 +1,12 @@ +post_install() { + gtk-update-icon-cache -q -t -f usr/share/icons/hicolor + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +post_remove() { + post_install +} |