mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
25 lines
651 B
Bash
25 lines
651 B
Bash
# $Id: PKGBUILD 37386 2009-05-01 12:03:38Z pierre $
|
|
# Maintainer: Pierre Schmitz <pierre@archlinux.de>
|
|
|
|
pkgname=qca
|
|
pkgver=2.0.2
|
|
pkgrel=1
|
|
pkgdesc="Qt Cryptographic Architecture"
|
|
arch=('i686' 'x86_64')
|
|
url="http://delta.affinix.com/qca/"
|
|
license=('LGPL')
|
|
depends=('qt' 'ca-certificates')
|
|
source=("http://delta.affinix.com/download/qca/2.0/${pkgname}-${pkgver}.tar.bz2")
|
|
md5sums=('27ebdfbd9869d90dae078a6decd029f4')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}-${pkgver}
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-tests \
|
|
--certstore-path=/etc/ssl/certs/ca-certificates.crt \
|
|
--release \
|
|
--no-separate-debug-info
|
|
make
|
|
make INSTALL_ROOT=$pkgdir install
|
|
}
|