diff options
author | root <root@rshg054.dnsready.net> | 2012-01-31 23:14:57 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-01-31 23:14:57 +0000 |
commit | c34f78dd37c2a2015d43de5d89748a2f8147ba1b (patch) | |
tree | 2e3912930db02e8f8cbfa8a58eae203b886fa2d9 /community-testing/pidgin-libnotify/PKGBUILD | |
parent | 902eddd7e029eda6fc1c668b31e696c6ca3edbc7 (diff) |
Tue Jan 31 23:14:56 UTC 2012
Diffstat (limited to 'community-testing/pidgin-libnotify/PKGBUILD')
-rw-r--r-- | community-testing/pidgin-libnotify/PKGBUILD | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/community-testing/pidgin-libnotify/PKGBUILD b/community-testing/pidgin-libnotify/PKGBUILD new file mode 100644 index 000000000..500f5d532 --- /dev/null +++ b/community-testing/pidgin-libnotify/PKGBUILD @@ -0,0 +1,29 @@ +# Maintainer: Daenyth <Daenyth+Arch [at] gmail [dot] com> +# Contributor: Hugo Doria <hugodoria@gmail.com> +# Contributor pidgin-libnotify: 3ED <kas1987@o2.pl> + +pkgname=pidgin-libnotify +pkgver=0.14 +pkgrel=5 +arch=('i686' 'x86_64') +pkgdesc="pidgin plugin that enables popups when someone logs in or messages you." +url="http://gaim-libnotify.sourceforge.net/" +license=('GPL') +depends=('pidgin' 'libnotify' 'perlxml' 'gettext' 'notification-daemon') +makedepends=('libtool' 'intltool') +replaces=('gaim-libnotify') +options=(!libtool) +source=(http://downloads.sourceforge.net/sourceforge/gaim-libnotify/$pkgname-$pkgver.tar.gz language_fixes.patch + pidgin-libnotify-0.14-libnotify-0.7.patch) +md5sums=('bfb5368b69c02d429b2b17c00a6673c0' + 'e9bdbb3c7faa61f062fc64277457b6c0' + '05538625f14d9f2c12adae5fa6a1fa26') + +build() { + cd "$srcdir/$pkgname-$pkgver" + patch -p1 -i "$srcdir/language_fixes.patch" + patch -p0 -i "$srcdir/pidgin-libnotify-0.14-libnotify-0.7.patch" + ./configure --prefix=/usr --disable-deprecated --disable-static + make + make DESTDIR="$pkgdir" install +} |