wok view qca/receipt @ rev 9517

Up: git to 1.7.4.4.
author Christopher Rogers <slaxemulator@gmail.com>
date Thu Apr 07 05:24:37 2011 +0000 (2011-04-07)
parents
children 76b72f1ad63c
line source
1 # SliTaz package receipt.
3 PACKAGE="qca"
4 VERSION="2.0.3"
5 CATEGORY="system-tools"
6 SHORT_DESC="QCA aims to provide a straightforward and cross-platform crypto API"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="qt4"
9 BUILD_DEPENDS="Qt4-dev qmake"
10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
11 WEB_SITE="http://delta.affinix.com/qca/"
12 WGET_URL="http://delta.affinix.com/download/qca/${VERSION%.*}/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure \
19 --prefix=/usr \
20 --certstore-path=/etc/ssl/certs/ca-certificates.crt \
21 --disable-tests \
22 --no-separate-debug-info \
23 --release &&
24 make && make INSTALL_ROOT=$WOK/$PACKAGE/install install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
31 cp -a $_pkg/usr/bin $fs/usr
32 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
33 }