36 lines
883 B
Bash
36 lines
883 B
Bash
# Template build file for 'libotr'.
|
|
pkgname=libotr
|
|
version=4.1.1
|
|
revision=1
|
|
build_style=gnu-configure
|
|
makedepends="libgcrypt-devel"
|
|
short_desc="Off-the-Record Messaging Library and Toolkit"
|
|
maintainer="Juan RP <xtraeme@voidlinux.org>"
|
|
homepage="http://www.cypherpunks.ca/otr/"
|
|
license="GPL-2, LGPL-2.1"
|
|
distfiles="http://www.cypherpunks.ca/otr/libotr-${version}.tar.gz"
|
|
checksum=8b3b182424251067a952fb4e6c7b95a21e644fbb27fbd5f8af2b2ed87ca419f5
|
|
|
|
pre_build() {
|
|
sed '/INCLUDES/s,-I$(includedir),,' -i toolkit/Makefile
|
|
}
|
|
|
|
libotr-progs_package() {
|
|
short_desc+=" - applications"
|
|
pkg_install() {
|
|
vmove usr/bin
|
|
vmove usr/share/man
|
|
}
|
|
}
|
|
|
|
libotr-devel_package() {
|
|
depends="${sourcepkg}-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove "usr/lib/*.so"
|
|
vmove usr/lib/pkgconfig
|
|
vmove usr/share/aclocal
|
|
}
|
|
}
|