wok view qtwitter/receipt @ rev 12766

ecm: Sync with wok-tank. Add ecm-extras.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 12 11:12:53 2012 +0000 (2012-05-12)
parents cd14149ba36e
children d51be739eda0
line source
1 # SliTaz package receipt.
3 PACKAGE="qtwitter"
4 VERSION="0.10.0"
5 CATEGORY="network"
6 SHORT_DESC="A Qt-based, cross-network microblogging client."
7 MAINTAINER="ben@seawolfsanctuary.com"
8 TARBALL="$PACKAGE-$VERSION-src.tar.gz"
9 WEB_SITE="http://blog.ayoy.net/qtwitter"
10 WGET_URL="http://files.ayoy.net/$PACKAGE/release/$VERSION/src/$TARBALL"
12 DEPENDS="glibc-locale libQtCore libQtGui libQtNetwork libQtSvg libQtXml \
13 libQtDesigner libQtScript libQt3Support libQtClucene libQtDBus libQtHelp \
14 libQtOpenGL libQtSql libQtWebkit qoauth qca"
15 BUILD_DEPENDS="qmake xorg-dev dbus-dev Qt4-dev qoauth qca-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 qmake PREFIX="/usr" && \
22 make -j4 && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib $fs/usr/bin \
29 $fs/usr/share/applications $fs/usr/share/pixmaps
31 # Binaries
32 cp -a $src/build/qtwitter $fs/usr/bin
33 # Libraries
34 cp -a $src/build/lib* $fs/usr/lib
35 # Copy .desktop file:
36 cp -a $src/qtwitter-app/x11/*.desktop $fs/usr/share/applications
37 cp -a $src/qtwitter-app/x11/icons/32x32/*.png $fs/usr/share/pixmaps
38 }