wok view qca/receipt @ rev 24031

updated dialog (1.3_20190211 -> 1.3_20210324)
author Hans-G?nter Theisgen
date Tue Apr 06 13:52:57 2021 +0100 (2021-04-06)
parents 667a6ebad331
children 7c0170dd3ecc
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 LICENSE="LGPL2.1"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://userbase.kde.org/QCA"
11 WGET_URL="http://delta.affinix.com/download/qca/${VERSION%.*}/$TARBALL"
13 DEPENDS="libQtCore"
14 BUILD_DEPENDS="Qt4-dev qmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --prefix=/usr \
21 --certstore-path=/etc/ssl/certs/ca-certificates.crt \
22 --disable-tests \
23 --no-separate-debug-info \
24 --release &&
25 make && make INSTALL_ROOT=$WOK/$PACKAGE/install install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/bin $fs/usr
33 cp -a $install/usr/lib/*.so* $fs/usr/lib
34 }