Files
extra/pidgin-otr/PKGBUILD
2025-06-22 20:39:04 -05:00

29 lines
910 B
Bash

# Maintainer: Jesus E. <heckyel@riseup.net>
pkgname=pidgin-otr
pkgver=4.0.2
pkgrel=1
pkgdesc="Off-the-Record Messaging plugin for Pidgin"
arch=('i686' 'x86_64')
license=('GPL-2' 'FDL-1.3')
url='https://www.cypherpunks.ca/otr/'
depends=('libotr' 'pidgin' 'perl-xml-parser')
makedepends=('intltool' 'gettext-tiny')
source=("https://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz"{,.asc})
sha512sums=('6815f1d2be5786726602a924ae6ead5371543a53bd36231dc3239fa580f73a6136836df0c1beb64d83b76e6bd0d80ffe6750ca6e9ddd2a6a94841a9a678925ad'
'SKIP')
validpgpkeys=('22DF3305DF56667CE15784FCF24DE08F42C2ABAD') # OTR Dev Team (Signing Key) <otr@cypherpunks.ca>
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure \
--prefix=/usr
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
install -Dm644 COPYING -t "${pkgdir}/usr/share/licenses/$pkgname"
}