mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
24 lines
728 B
Bash
24 lines
728 B
Bash
# $Id: PKGBUILD 27139 2009-02-16 08:05:44Z eric $
|
|
# Maintainer: Dan McGee <dan@archlinux.org>
|
|
# Contributor: Dale Blount <dale@archlinux.org>
|
|
|
|
pkgname=pidgin-encryption
|
|
pkgver=3.0
|
|
pkgrel=1
|
|
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')
|
|
replaces=('gaim-encryption')
|
|
options=(!libtool)
|
|
source=(http://downloads.sourceforge.net/pidgin-encrypt/$pkgname-$pkgver.tar.gz)
|
|
md5sums=('3f3f8e9a15d19e084d54bfbbd2db9d77')
|
|
sha1sums=('bccad1c4ac0bec12e6837324f543ea60530d0761')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|