wok view libqwt5-qt4/receipt @ rev 22177

corrected font-manager
author Hans-G?nter Theisgen
date Sat Nov 09 11:33:35 2019 +0100 (2019-11-09)
parents 086841d75237
children fba91717815c
line source
1 # SliTaz package receipt.
3 PACKAGE="libqwt5-qt4"
4 VERSION="5.2.0"
5 CATEGORY="graphics"
6 SHORT_DESC="Lib Qt Widgets for Technical applications"
7 MAINTAINER="slitaz@objectif-securite.ch"
8 LICENSE="LGPL2.1"
9 SOURCE="qwt"
10 TARBALL="$SOURCE-$VERSION.tar.bz2"
11 WEB_SITE="http://qwt.sourceforge.net"
12 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/qwt/$TARBALL"
14 DEPENDS="libQtCore libQtGui libQtScript libQtXml libQtDesigner gcc-lib-base"
15 BUILD_DEPENDS="$DEPENDS qt4 qmake Qt4-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 qmake
22 make -j1 &&
23 make INSTALL_ROOT=$DESTDIR 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/qt $fs/usr/lib
31 cp -a $install/usr/local/qwt-$VERSION/lib/libqwt.so* $fs/usr/lib
32 }