wok view libqwt5-qt4/receipt @ rev 7293

Removed patch for openssl to fix build.
author Christopher Rogers <slaxemulator@gmail.com>
date Tue Nov 16 19:05:43 2010 +0000 (2010-11-16)
parents 8752c40cc534
children ca57e8529d1c
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 DEPENDS="libQtCore libQtGui libQtScript libQtXml libQtDesigner gcc-lib-base"
9 BUILD_DEPENDS="$DEPENDS qt4"
10 SOURCE="qwt"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="http://qwt.sourceforge.net"
13 WGET_URL="http://switch.dl.sourceforge.net/sourceforge/qwt/$TARBALL"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 qmake
20 make &&
21 make INSTALL_ROOT=$PWD/_pkg 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 $_pkg/usr/lib/qt $fs/usr/lib
29 cp -a $_pkg/usr/local/qwt-$VERSION/lib/libqwt.so* $fs/usr/lib
30 }