diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/gxmessage/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/gxmessage/PKGBUILD')
-rw-r--r-- | community/gxmessage/PKGBUILD | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/community/gxmessage/PKGBUILD b/community/gxmessage/PKGBUILD new file mode 100644 index 000000000..afc4f56e9 --- /dev/null +++ b/community/gxmessage/PKGBUILD @@ -0,0 +1,28 @@ +# $Id: PKGBUILD 20450 2010-07-08 10:59:33Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Geoffroy Carrier <geoffroy.carrier@koon.fr> +# Contributor: Jaroslav Lichtblau <tu@dragonlord.cz> + +pkgname=gxmessage +pkgver=2.12.4 +pkgrel=1 +pkgdesc="A GTK2 based xmessage clone." +arch=('i686' 'x86_64') +url="http://homepages.ihug.co.nz/~trmusson/programs.html#gxmessage" +license=('GPL') +depends=('gtk2' 'desktop-file-utils') +makedepends=('pkgconfig') +install=$pkgname.install +source=(http://homepages.ihug.co.nz/~trmusson/stuff/$pkgname-$pkgver.tar.gz + $pkgname.desktop) +md5sums=('7c94c714ebedbfa2db2d645cc4a4092a' + 'af92506581c1aae70e3845a66a983f22') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --mandir=/usr/share/man || return 1 + make || return 1 + make DESTDIR="$pkgdir" install || return 1 + install -D -m644 "$srcdir/$pkgname.desktop" \ + "${pkgdir}/usr/share/applications/$pkgname.desktop" +} |