blob: 7ed71bf5c761036d7b2b193ef46a4882021e9424 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# $Id: PKGBUILD 79796 2010-05-07 19:39:52Z ibiru $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Dan McGee <dan@archlinux.org>
# Contributor: Dale Blount <dale@archlinux.org>
pkgname=pidgin-encryption
pkgver=3.1
pkgrel=1
pkgdesc="A Pidgin plugin providing transparent RSA encryption using NSS"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
url="http://pidgin-encrypt.sourceforge.net/"
depends=('pidgin' 'nss')
options=('!libtool')
source=(http://downloads.sourceforge.net/pidgin-encrypt/$pkgname-$pkgver.tar.gz)
md5sums=('d839eec602c21f913b32b742dc512f4b')
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure --prefix=/usr --disable-static
make || return 1
make DESTDIR="$pkgdir" install
}
|