wok-next annotate musique/receipt @ rev 20661
Unification of the patch system
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Thu May 10 21:12:00 2018 +0300 (2018-05-10) |
parents | d43bf7aae921 |
children | d5aab818505e |
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@16928 | 10 WEB_SITE="http://flavio.tordini.org/musique" |
al@16928 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
al@16928 | 12 WGET_URL="https://gitorious.org/minitunes/minitunes/archive/$COMMIT.tar.gz" |
al@16928 | 13 |
al@16928 | 14 DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtSql libQtXml \ |
al@16928 | 15 qt4-phonon taglib" |
al@20513 | 16 BUILD_DEPENDS="Qt4-dev qmake taglib-dev qt4-phonon" |
al@16928 | 17 |
al@16928 | 18 # Rules to configure and make the package. |
al@16928 | 19 compile_rules() |
al@16928 | 20 { |
al@20661 | 21 # put default icons to resources (instead of to hicolor icon theme) + patch |
al@16928 | 22 cp -a $stuff/*.png $src/images |
al@16928 | 23 |
al@16928 | 24 mkdir build; cd build |
al@16928 | 25 qmake PREFIX=/usr ../musique.pro && |
al@16928 | 26 make && |
al@16928 | 27 make INSTALL_ROOT=$install install |
al@16928 | 28 } |
al@16928 | 29 |
al@16928 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@16928 | 31 genpkg_rules() |
al@16928 | 32 { |
al@16928 | 33 cp -a $install/* $fs |
al@16928 | 34 |
al@16928 | 35 # remove big icons |
al@16928 | 36 for size in 64 128 256 512; do |
al@16928 | 37 rm -rf $fs/usr/share/icons/hicolor/${size}x$size |
al@16928 | 38 done |
al@16928 | 39 } |