wok-next view musique/receipt @ rev 20959

Fix minicom
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 06 11:27:41 2018 +0200 (2018-09-06)
parents d43bf7aae921
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="musique"
4 COMMIT="c993f23d5343222958c7a6ee684eebef831a7b02"
5 VERSION="${COMMIT:0:7}"
6 CATEGORY="multimedia"
7 SHORT_DESC="Musique music player"
8 MAINTAINER="al.bobylev@gmail.com"
9 LICENSE="GPL3"
10 WEB_SITE="http://flavio.tordini.org/musique"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="https://gitorious.org/minitunes/minitunes/archive/$COMMIT.tar.gz"
14 DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtSql libQtXml \
15 qt4-phonon taglib"
16 BUILD_DEPENDS="Qt4-dev qmake taglib-dev qt4-phonon"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 # put default icons to resources (instead of to hicolor icon theme) + patch
22 cp -a $stuff/*.png $src/images
24 mkdir build; cd build
25 qmake PREFIX=/usr ../musique.pro &&
26 make &&
27 make INSTALL_ROOT=$install install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 cp -a $install/* $fs
35 # remove big icons
36 for size in 64 128 256 512; do
37 rm -rf $fs/usr/share/icons/hicolor/${size}x$size
38 done
39 }