mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 12:47:16 +08:00
25 lines
563 B
Bash
25 lines
563 B
Bash
# maintainer: Neophytos Kolokotronis <tetris4@gmail.com>
|
|
|
|
pkgname=libotr
|
|
pkgver=3.2.1
|
|
pkgrel=1
|
|
pkgdesc='Off-the-Record Messaging Library and Toolkit.'
|
|
arch=('x86_64')
|
|
url='http://www.cypherpunks.ca/otr/'
|
|
license=('GPL' 'LGPL')
|
|
depends=('libgcrypt')
|
|
options=('!libtool')
|
|
source=("http://www.cypherpunks.ca/otr/${pkgname}-${pkgver}.tar.gz")
|
|
md5sums=('974acf937d2ce0ee89b27a9815c17a3f')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|