diff options
Diffstat (limited to 'community/pidgin-encryption/PKGBUILD')
-rw-r--r-- | community/pidgin-encryption/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/pidgin-encryption/PKGBUILD b/community/pidgin-encryption/PKGBUILD new file mode 100644 index 000000000..7969f2e8e --- /dev/null +++ b/community/pidgin-encryption/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 83172 2013-01-27 16:23:51Z pierre $ +# 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=2 +pkgdesc="A Pidgin plugin providing transparent RSA encryption using NSS" +arch=('i686' 'x86_64') +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 +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir" install +} |