wok view kqoauth/receipt @ rev 22739

updated doxygen (1.8.15 -> 1.8.17)
author Hans-G?nter Theisgen
date Fri Jan 24 07:40:21 2020 +0100 (2020-01-24)
parents 55ae2a832163
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="kqoauth"
4 VERSION="0.98"
5 CATEGORY="development"
6 SHORT_DESC="kQOAuth is a OAuth 1.0 library written for Qt in C++"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/kypeli/kQOAuth"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz"
13 DEPENDS="libQtGui libQtNetwork libssl"
14 BUILD_DEPENDS="qmake Qt4-dev openssl-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 qmake && make && make INSTALL_ROOT=$install install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $install/usr/lib/*.so* $fs/usr/lib
27 }