wok-next view musique/receipt @ rev 21723

busybox: update patches
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:44:52 2020 +0000 (2020-09-01)
parents d5aab818505e
children
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="https://flavio.tordini.org/musique"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://gitorious.org/minitunes/minitunes/archive/$COMMIT.tar.gz"
15 BUILD_DEPENDS="Qt4-dev qmake taglib-dev qt4-phonon"
17 compile_rules() {
18 # put default icons to resources (instead of to hicolor icon theme) + patch
19 cp -a $stuff/*.png $src/images
21 mkdir build
22 cd build
23 qmake \
24 PREFIX=/usr \
25 ../musique.pro &&
26 make &&
27 make INSTALL_ROOT=$install install
28 }
30 genpkg_rules() {
31 cp -a $install/* $fs
33 # remove big icons
34 for size in 64 128 256 512; do
35 rm -rf $fs/usr/share/icons/hicolor/${size}x$size
36 done
37 DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtSql libQtXml \
38 qt4-phonon taglib"
39 }