wok-next annotate musique/receipt @ rev 21457

updated sshfs-fuse (3.3.1 -> 3.7.0)
author Hans-G?nter Theisgen
date Thu May 07 14:36:33 2020 +0100 (2020-05-07)
parents d5aab818505e
children
rev   line source
al@16928 1 # SliTaz package receipt.
al@16928 2
al@16928 3 PACKAGE="musique"
al@16928 4 COMMIT="c993f23d5343222958c7a6ee684eebef831a7b02"
al@16928 5 VERSION="${COMMIT:0:7}"
al@16928 6 CATEGORY="multimedia"
al@16928 7 SHORT_DESC="Musique music player"
al@16928 8 MAINTAINER="al.bobylev@gmail.com"
al@16928 9 LICENSE="GPL3"
al@21041 10 WEB_SITE="https://flavio.tordini.org/musique"
al@21041 11
al@16928 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@16928 13 WGET_URL="https://gitorious.org/minitunes/minitunes/archive/$COMMIT.tar.gz"
al@16928 14
al@20513 15 BUILD_DEPENDS="Qt4-dev qmake taglib-dev qt4-phonon"
al@16928 16
al@21020 17 compile_rules() {
al@20661 18 # put default icons to resources (instead of to hicolor icon theme) + patch
al@16928 19 cp -a $stuff/*.png $src/images
al@16928 20
al@21020 21 mkdir build
al@21020 22 cd build
al@21020 23 qmake \
al@21020 24 PREFIX=/usr \
al@21020 25 ../musique.pro &&
al@16928 26 make &&
al@16928 27 make INSTALL_ROOT=$install install
al@16928 28 }
al@16928 29
al@21020 30 genpkg_rules() {
al@16928 31 cp -a $install/* $fs
al@16928 32
al@16928 33 # remove big icons
al@16928 34 for size in 64 128 256 512; do
al@16928 35 rm -rf $fs/usr/share/icons/hicolor/${size}x$size
al@16928 36 done
al@21020 37 DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtSql libQtXml \
al@21020 38 qt4-phonon taglib"
al@16928 39 }