mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-05 09:27:14 +08:00
30 lines
702 B
Bash
30 lines
702 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer <abveritas@chakra-project.org>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=libotr
|
|
pkgver=3.2.0
|
|
pkgrel=2
|
|
pkgdesc='Off-the-Record Messaging Library and Toolkit.'
|
|
arch=('i686' '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=('faba02e60f64e492838929be2272f839')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
./configure --prefix=/usr --mandir=/usr/share/man
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir/$pkgname-$pkgver"
|
|
make DESTDIR="$pkgdir" install
|
|
} |