wok-next view qtkeychain/receipt @ rev 19464

reverting: building this 5-year diff gap didn't work out, user request: http://forum.slitaz.org/topic/gnumeric-110-buggy-how-can-i-get-112
author Erkan Yilmaz <erkan@slitaz.org>
date Mon Oct 24 11:39:42 2016 +0000 (2016-10-24)
parents
children c3a368c0cddb
line source
1 # SliTaz package receipt.
3 PACKAGE="qtkeychain"
4 VERSION="0.5.0"
5 CATEGORY="security"
6 SHORT_DESC="Platform-independent Qt API for storing passwords securely"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://github.com/frankosterfeld/qtkeychain"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
13 DEPENDS="libQtDBus"
14 BUILD_DEPENDS="cmake Qt4-dev qmake"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir build; cd build
20 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }