diff options
author | root <root@rshg054.dnsready.net> | 2011-11-04 23:14:51 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-11-04 23:14:51 +0000 |
commit | 3026bb55941e3b04b56f5fb41b88941c6c2ce0cd (patch) | |
tree | 576b183074d925e58c2e37ae2b641e712bceacb1 /community/pidgin-otr | |
parent | b625511a28fd8401f524474b5339e75328595150 (diff) |
Fri Nov 4 23:14:51 UTC 2011
Diffstat (limited to 'community/pidgin-otr')
-rw-r--r-- | community/pidgin-otr/PKGBUILD | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/community/pidgin-otr/PKGBUILD b/community/pidgin-otr/PKGBUILD index a395b5022..565f57436 100644 --- a/community/pidgin-otr/PKGBUILD +++ b/community/pidgin-otr/PKGBUILD @@ -1,23 +1,30 @@ -# $Id: PKGBUILD 17934 2010-05-27 08:06:13Z angvp $ -# Maintainer: Angel 'angvp' Velasquez <angvp[at]archlinux.com.ve> +# $Id: PKGBUILD 57815 2011-11-03 09:57:10Z lfleischer $ +# Maintainer: Lukas Fleischer <archlinux at cryptocrack dot de> +# Contributor: 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" +pkgrel=3 +pkgdesc='Off-the-Record Messaging plugin for Pidgin.' arch=('i686' 'x86_64') license=('GPL') -url="http://www.cypherpunks.ca/otr/" +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') +source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz"{,.asc}) +md5sums=('8af70b654b7d7c5a5b7785699ff562f9' + '67d711a7a44cef2791f50b319aaf0e0e') build() { - cd $srcdir/$pkgname-$pkgver + cd "${srcdir}/${pkgname}-${pkgver}" + ./configure --prefix=/usr - make || return 1 - make DESTDIR=$pkgdir install || return 1 + make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install } |