mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
740 B
Bash
22 lines
740 B
Bash
# Maintainer: Hugo Doria <hugodoria@gmail.com>
|
|
# Contributor pidgin-libnotify: 3ED <kas1987@o2.pl>
|
|
|
|
pkgname=pidgin-libnotify
|
|
pkgver=0.14
|
|
pkgrel=2
|
|
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')
|
|
source=(http://downloads.sourceforge.net/sourceforge/gaim-libnotify/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('bfb5368b69c02d429b2b17c00a6673c0')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr --disable-deprecated
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|