# HG changeset patch # User Aleksej Bobylev # Date 1405693276 -10800 # Node ID 1d0a6f007a2f5d031643031785c9553651048a6c # Parent f891aaa3382924c53d88d366734ee89c9a91b6ac Add musique. diff -r f891aaa33829 -r 1d0a6f007a2f musique/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/musique/description.txt Fri Jul 18 17:21:16 2014 +0300 @@ -0,0 +1,27 @@ +Musique does its best to stay out of the way and keep you focused on the only +thing that really matters: Music. + +Musique is great for those who appreciate its efficient simplicity. Consider +getting it as a gift for kids and other family members that may find other +players too complex and cumbersome. + + * Starts fast, very lightweight and can easily handle large collections. + * Browse artist photos, album covers and folders too, so you can organize your + music your way. + * Immersive Info View you can switch to when listening. It contains valuable + information about the current track, album and artist. When a new song + starts, it will auto-update. + * Automatically fixes misspellings and case in track titles, album titles and + artist names, freeing you from the hassle of manually tagging your files. + * Musique never ever modifies your files, it stores all of its data in its own + database. + * Supports scrobbling to Last.fm + * Displays song lyrics stored inside your MP3s + * Musique has just a single play queue. You can't go wrong, it's always there + on the right. + * Takes advantage of QuickTime on the Mac and VLC on Windows and thus supports + all common audio formats. + * Not an iTunes addon. It's a completely independent application that does one + thing and does it well. + * Translated to more than 20 languages including German, French, Spanish, + Portuguese, Italian, Russian and Chinese. diff -r f891aaa33829 -r 1d0a6f007a2f musique/receipt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/musique/receipt Fri Jul 18 17:21:16 2014 +0300 @@ -0,0 +1,40 @@ +# SliTaz package receipt. + +PACKAGE="musique" +COMMIT="c993f23d5343222958c7a6ee684eebef831a7b02" +VERSION="${COMMIT:0:7}" +CATEGORY="multimedia" +SHORT_DESC="Musique music player" +MAINTAINER="al.bobylev@gmail.com" +LICENSE="GPL3" +WEB_SITE="http://flavio.tordini.org/musique" +TARBALL="$PACKAGE-$VERSION.tar.gz" +WGET_URL="https://gitorious.org/minitunes/minitunes/archive/$COMMIT.tar.gz" + +DEPENDS="libQtCore libQtDBus libQtGui libQtNetwork libQtSql libQtXml \ +qt4-phonon taglib" +BUILD_DEPENDS="wget cacerts Qt4-dev qmake taglib-dev " + +# Rules to configure and make the package. +compile_rules() +{ + # put default icons to resources (instead of to hicolor icon theme) + cp -a $stuff/*.png $src/images + patch -p0 < $stuff/icons.diff + + mkdir build; cd build + qmake PREFIX=/usr ../musique.pro && + make && + make INSTALL_ROOT=$install install +} + +# Rules to gen a SliTaz package suitable for Tazpkg. +genpkg_rules() +{ + cp -a $install/* $fs + + # remove big icons + for size in 64 128 256 512; do + rm -rf $fs/usr/share/icons/hicolor/${size}x$size + done +} diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/README --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/musique/stuff/README Fri Jul 18 17:21:16 2014 +0300 @@ -0,0 +1,6 @@ +I can't cope with icon theming in pure Qt environment. +So I just added all default icons to the application's resources. +All icons from Faenza icon theme. + +Faenza is designed and developed by Matthieu James . +Faenza icons are all licensed under the GPL. diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/audio-volume-high.png Binary file musique/stuff/audio-volume-high.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/audio-volume-muted.png Binary file musique/stuff/audio-volume-muted.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/edit-clear.png Binary file musique/stuff/edit-clear.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/go-previous.png Binary file musique/stuff/go-previous.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/gtk-info.png Binary file musique/stuff/gtk-info.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/icons.diff --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/musique/stuff/icons.diff Fri Jul 18 17:21:16 2014 +0300 @@ -0,0 +1,21 @@ +--- resources.qrc ++++ resources.qrc +@@ -8,5 +8,18 @@ + images/item/track.png + style.css + images/sort.png ++ images/audio-volume-high.png ++ images/audio-volume-muted.png ++ images/edit-clear.png ++ images/go-previous.png ++ images/gtk-info.png ++ images/list-add.png ++ images/media-playback-start.png ++ images/media-playback-stop.png ++ images/media-playlist-repeat.png ++ images/media-playlist-shuffle.png ++ images/media-skip-backward.png ++ images/media-skip-forward.png ++ images/view-restore.png + + diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/list-add.png Binary file musique/stuff/list-add.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-playback-start.png Binary file musique/stuff/media-playback-start.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-playback-stop.png Binary file musique/stuff/media-playback-stop.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-playlist-repeat.png Binary file musique/stuff/media-playlist-repeat.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-playlist-shuffle.png Binary file musique/stuff/media-playlist-shuffle.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-skip-backward.png Binary file musique/stuff/media-skip-backward.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/media-skip-forward.png Binary file musique/stuff/media-skip-forward.png has changed diff -r f891aaa33829 -r 1d0a6f007a2f musique/stuff/view-restore.png Binary file musique/stuff/view-restore.png has changed