wok view libqtxdg/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 7aac542e058a
children 5ea0ce1cecc0
line source
1 # SliTaz package receipt.
3 PACKAGE="libqtxdg"
4 VERSION="1.0.0"
5 CATEGORY="system-tools"
6 SHORT_DESC="Qt implementation of freedesktop.org XDG specs"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2.1"
9 WEB_SITE="https://github.com/lxde/libqtxdg"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/lxde/$PACKAGE/archive/$VERSION.tar.gz"
12 TAGS="LXQt"
14 DEPENDS="libQtGui libQtXml libQtMimeTypes"
15 BUILD_DEPENDS="wget cacerts cmake Qt4-dev qmake libQtMimeTypes-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 mkdir build; cd build
21 cmake -DCMAKE_INSTALL_PREFIX=/usr .. &&
22 make &&
23 make DESTDIR=$install install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $install/usr/lib/*.so* $fs/usr/lib
31 }