forked from ports/contrib
28 lines
672 B
Plaintext
28 lines
672 B
Plaintext
|
# Description: QCA openssl plugin.
|
||
|
# URL: http://delta.affinix.com/qca/
|
||
|
# Maintainer: Danny Rawlins, monster dot romster at gmail dot com
|
||
|
# Packager: Jose V Beneyto, sepen at crux dot nu
|
||
|
# Depends on: qca openssl
|
||
|
|
||
|
name=qca-ossl
|
||
|
version=2.0.0
|
||
|
release=1
|
||
|
source=(http://delta.affinix.com/download/qca/2.0/plugins/$name-$version-beta3.tar.bz2
|
||
|
qca-ossl-openssl-1.0.0.patch)
|
||
|
|
||
|
build() {
|
||
|
cd $name-$version-beta3
|
||
|
|
||
|
patch -p1 -i $SRC/qca-ossl-openssl-1.0.0.patch
|
||
|
|
||
|
# non-standard configure script
|
||
|
./configure \
|
||
|
--qtdir=/usr/share/qt4 \
|
||
|
--release \
|
||
|
--no-separate-debug-info
|
||
|
|
||
|
[ "$CXX" ] || CXX=g++
|
||
|
make CXX="$CXX" LINK="$CXX" $MAKEFLAGS
|
||
|
make INSTALL_ROOT=${PKG} install
|
||
|
}
|