blob: 837667cbeb7610b967e11981f8fe567f40b44958 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $Id: PKGBUILD 17250 2010-05-22 14:25:10Z ibiru $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: Link Dupont <link@.subpop.net>
pkgname=guifications
pkgver=2.16
pkgrel=2
pkgdesc="A set of GUI popup notifications for pidgin"
arch=(i686 x86_64 'mips64el')
url="http://plugins.guifications.org/trac/wiki/Guifications"
license=("GPL")
depends=('pidgin')
makedepends=('perlxml')
options=('!libtool')
source=(pidgin-${pkgname}-${pkgver}.tar.bz2::http://plugins.guifications.org/trac/downloads/7)
md5sums=('cd1f803231093cde01514feca59f643f')
build() {
cd "${srcdir}/pidgin-${pkgname}-${pkgver}"
./configure --prefix=/usr --disable-deprecated
make || return 1
make DESTDIR="${pkgdir}" install
}
|