wok-current annotate decibel/receipt @ rev 17335
Add dfu-util
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Wed Nov 05 16:17:22 2014 +0100 (2014-11-05) |
parents | 47439c60021f |
children | 1bf2e81fd62f |
rev | line source |
---|---|
slaxemulator@7369 | 1 # SliTaz package receipt. |
slaxemulator@7369 | 2 |
slaxemulator@7369 | 3 PACKAGE="decibel" |
slaxemulator@7369 | 4 VERSION="1.06" |
slaxemulator@7369 | 5 CATEGORY="multimedia" |
slaxemulator@7369 | 6 SHORT_DESC="Decibel audio player for Gnome Desktop." |
slaxemulator@7369 | 7 MAINTAINER="slaxemulator@gmail.com" |
pascal@15579 | 8 LICENSE="GPL2" |
slaxemulator@7369 | 9 SOURCE="$PACKAGE-audio-player" |
slaxemulator@7369 | 10 TARBALL="$SOURCE-$VERSION.tar.gz" |
slaxemulator@7369 | 11 WEB_SITE="http://decibel.silent-blade.org/" |
slaxemulator@7369 | 12 WGET_URL="http://decibel.silent-blade.org/uploads/Main/$TARBALL" |
slaxemulator@7369 | 13 |
pascal@15579 | 14 DEPENDS="python gst-python notify-python pygtk dbus-python mutagen" |
pascal@15579 | 15 BUILD_DEPENDS="gettext" |
pascal@15579 | 16 |
slaxemulator@7369 | 17 # Rules to configure and make the package. |
slaxemulator@7369 | 18 compile_rules() |
slaxemulator@7369 | 19 { |
slaxemulator@7369 | 20 cd $src |
slaxemulator@7369 | 21 # needed to install locale files |
slaxemulator@7369 | 22 [ -L /usr/bin/find ]; tazpkg get-install findutils --forced |
slaxemulator@10827 | 23 make prefix=/usr DESTDIR=$DESTDIR install |
slaxemulator@7369 | 24 } |
slaxemulator@7369 | 25 |
slaxemulator@7369 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
slaxemulator@7369 | 27 genpkg_rules() |
slaxemulator@7369 | 28 { |
slaxemulator@7369 | 29 mkdir -p $fs/usr/share |
pascal@15579 | 30 cp -a $install/usr/bin $fs/usr |
pascal@15579 | 31 cp -a $install/usr/share/$SOURCE $fs/usr/share |
pascal@15579 | 32 cp -a $install/usr/share/pixmaps $fs/usr/share |
pascal@15579 | 33 cp -a $install/usr/share/applications $fs/usr/share |
slaxemulator@7369 | 34 } |
slaxemulator@7369 | 35 |