mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 15:24:36 +08:00
26 lines
638 B
Bash
26 lines
638 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libotr
|
|
pkgver=4.1.1
|
|
pkgrel=1
|
|
pkgdesc='Off-the-Record Messaging Library and Toolkit'
|
|
url='http://otr.cypherpunks.ca/'
|
|
license=('GPL' 'LGPL')
|
|
arch=('x86_64')
|
|
depends=('libgcrypt')
|
|
validpgpkeys=('576979E7D0CAB38C7AA3DDBDDED64EBB2BA87C5C')
|
|
source=("http://otr.cypherpunks.ca/${pkgname}-${pkgver}.tar.gz"{,.asc})
|
|
sha1sums=('3894b82a6c307ad011681ad342d69b18344933ae'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|