diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/pidgin-otr |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/pidgin-otr')
-rw-r--r-- | community/pidgin-otr/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/pidgin-otr/PKGBUILD b/community/pidgin-otr/PKGBUILD new file mode 100644 index 000000000..a395b5022 --- /dev/null +++ b/community/pidgin-otr/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 17934 2010-05-27 08:06:13Z angvp $ +# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# Contributor: Allan McRae <allan@archlinux.org> +# Contributor: Bug <Bug2000@gmail.com> +# Contributor: Marcel Wysocki <maci@satgnu.net> + +pkgname=pidgin-otr +pkgver=3.2.0 +pkgrel=2 +pkgdesc="Off-the-Record Messaging plugin for Pidgin" +arch=('i686' 'x86_64') +license=('GPL') +url="http://www.cypherpunks.ca/otr/" +depends=('libotr>=3.2.0' 'pidgin' 'perlxml') +source=("http://www.cypherpunks.ca/otr/$pkgname-$pkgver.tar.gz") +md5sums=('8af70b654b7d7c5a5b7785699ff562f9') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr + make || return 1 + make DESTDIR=$pkgdir install || return 1 +} |