wok rev 21189
consonance: added to dependencies
author | Hans-G?nter Theisgen |
---|---|
date | Wed Apr 03 15:57:39 2019 +0100 (2019-04-03) |
parents | 867bb26f7a1e |
children | e6057e85425f |
files | consonance/receipt |
line diff
1.1 --- a/consonance/receipt Wed Apr 03 15:52:57 2019 +0100 1.2 +++ b/consonance/receipt Wed Apr 03 15:57:39 2019 +0100 1.3 @@ -3,36 +3,43 @@ 1.4 PACKAGE="consonance" 1.5 VERSION="0.5" 1.6 CATEGORY="multimedia" 1.7 -SHORT_DESC="A lightwight music manager" 1.8 +TAGS="player audio music mp3 ogg" 1.9 +SHORT_DESC="A lightwight music manager." 1.10 MAINTAINER="jozee@slitaz.org" 1.11 LICENSE="GPL3" 1.12 +WEB_SITE="http://sites.google.com/site/consonancemanager/" 1.13 + 1.14 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.15 -WEB_SITE="http://sites.google.com/site/consonancemanager/" 1.16 WGET_URL="http://cloud.github.com/downloads/sujith/consonance/$TARBALL" 1.17 -TAGS="player audio music mp3 ogg" 1.18 1.19 DEPENDS="libao taglib libmad sqlite dbus-glib libnotify flac libsndfile libvorbis \ 1.20 -curl libmodplug libcdio libcddb xcb-util" 1.21 + curl libmodplug libcdio-paranoia libcddb xcb-util" 1.22 BUILD_DEPENDS="libao-dev taglib taglib-dev libmad-dev sqlite-dev dbus-glib-dev \ 1.23 -libnotify-dev flac-dev libsndfile-dev libvorbis-dev curl-dev libmodplug-dev \ 1.24 -libcdio-dev libcddb-dev libidn-dev libidn libao libsndfile libmodplug libcdio \ 1.25 -alsa-lib-dev libogg-dev gtk+-dev" 1.26 + libnotify-dev flac-dev libsndfile-dev libvorbis-dev curl-dev libmodplug-dev \ 1.27 + libcdio-dev libcddb-dev libidn-dev libidn libao libsndfile libmodplug libcdio \ 1.28 + libcdio-paranoia-dev alsa-lib-dev libogg-dev gtk+-dev" 1.29 1.30 # Rules to configure and make the package. 1.31 compile_rules() 1.32 { 1.33 sed -i 's/.*= notify_notification_new_with_status_icon/#define notify_notification_new_with_status_icon(a,b,c,d) notify_notification_new(a,b,gtk_status_icon_get_icon_name(c))\n&/' src/statusicon.c 1.34 - ./configure --prefix=/usr $CONFIGURE_ARGS && 1.35 - make && 1.36 + 1.37 + ./configure \ 1.38 + --prefix=/usr \ 1.39 + $CONFIGURE_ARGS && 1.40 + make -j 1 && 1.41 make DESTDIR=$DESTDIR install 1.42 - 1.43 } 1.44 1.45 # Rules to gen a SliTaz package suitable for Tazpkg. 1.46 genpkg_rules() 1.47 { 1.48 - mkdir -p $fs/usr/lib $fs/usr/share $fs/usr/share/pixmaps 1.49 - cp -a $install/usr/bin $fs/usr 1.50 - cp -a $install/usr/share/$PACKAGE $fs/usr/share 1.51 - cp -a $install/usr/share/$PACKAGE/data/consonance.png $fs/usr/share/pixmaps 1.52 + mkdir -p $fs/usr/lib 1.53 + mkdir -p $fs/usr/share 1.54 + mkdir -p $fs/usr/share/pixmaps 1.55 + 1.56 + cp -a $install/usr/bin $fs/usr 1.57 + cp -a $install/usr/share/$PACKAGE $fs/usr/share 1.58 + cp -a $install/usr/share/$PACKAGE/data/consonance.png \ 1.59 + $fs/usr/share/pixmaps 1.60 }