wok annotate qtkeychain/receipt @ rev 22760

updated findutils (4.6.0 -> 4.7.0)
author Hans-G?nter Theisgen
date Fri Jan 24 17:10:12 2020 +0100 (2020-01-24)
parents
children 04e66a06bae2
rev   line source
al@18691 1 # SliTaz package receipt.
al@18691 2
al@18691 3 PACKAGE="qtkeychain"
al@18691 4 VERSION="0.5.0"
al@18691 5 CATEGORY="security"
al@18691 6 SHORT_DESC="Platform-independent Qt API for storing passwords securely"
al@18691 7 MAINTAINER="al.bobylev@gmail.com"
al@18691 8 LICENSE="BSD"
al@18691 9 WEB_SITE="https://github.com/frankosterfeld/qtkeychain"
al@18691 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@18691 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
al@18691 12
al@18691 13 DEPENDS="libQtDBus"
al@18691 14 BUILD_DEPENDS="cmake Qt4-dev qmake"
al@18691 15
al@18691 16 # Rules to configure and make the package.
al@18691 17 compile_rules()
al@18691 18 {
al@18691 19 mkdir build; cd build
al@18691 20 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
al@18691 21 make && make install
al@18691 22 }
al@18691 23
al@18691 24 # Rules to gen a SliTaz package suitable for Tazpkg.
al@18691 25 genpkg_rules()
al@18691 26 {
al@18691 27 mkdir -p $fs/usr/lib
al@18691 28 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@18691 29 }