wok view minitube/receipt @ rev 17435

Up: minitube (2.3.1)
author Xander Ziiryanoff <psychomaniak@xakep.ru>
date Sun Dec 07 16:24:42 2014 +0100 (2014-12-07)
parents b90addf313be
children f0abc67d78c1
line source
1 # SliTaz package receipt.
3 PACKAGE="minitube"
4 VERSION="2.3.1"
5 CATEGORY="multimedia"
6 SHORT_DESC="Minitube is a native YouTube client"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://flavio.tordini.org/minitube"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://gitorious.org/minitube/minitube/archive/$VERSION.tar.gz"
13 DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtScript libQtSql \
14 libQtXml libQtOpenGL qt4-phonon gst-plugins-good gst-ffmpeg"
15 BUILD_DEPENDS="wget cacerts Qt4-dev qmake"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 # put default icons to resources (instead of to hicolor icon theme)
21 cp -a $stuff/*.png $src/images
22 patch -p0 < $stuff/icons.diff
24 mkdir build; cd build
25 qmake ../minitube.pro &&
26 make && make INSTALL_ROOT=$install install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 cp -a $install/* $fs
34 # remove big icons
35 for size in 64 128 256 512 scalable; do
36 rm -rf $fs/usr/share/icons/hicolor/${size}*
37 done
38 }