mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
23 lines
663 B
Bash
23 lines
663 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Contributor: Link Dupont <link@.subpop.net>
|
||
|
|
||
|
pkgname=guifications
|
||
|
pkgver=2.16
|
||
|
pkgrel=1
|
||
|
pkgdesc="A set of GUI popup notifications for pidgin"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://plugins.guifications.org/trac/wiki/Guifications"
|
||
|
license=("GPL")
|
||
|
depends=('pidgin' 'pango')
|
||
|
makedepends=('perlxml')
|
||
|
options=('!libtool')
|
||
|
source=(http://downloads.guifications.org/plugins//Guifications2/pidgin-guifications-$pkgver.tar.bz2)
|
||
|
md5sums=('cd1f803231093cde01514feca59f643f')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/pidgin-$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --disable-deprecated
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|