wok diff potamus/receipt @ rev 22443
vlc: add hicolor-icon-theme -> post-install misses index.theme
author | Erkan Yilmaz <erkan@slitaz.org> |
---|---|
date | Mon Dec 23 15:29:27 2019 +0000 (2019-12-23) |
parents | f3e5f6a3ef9a |
children | 241fb98cab1c |
line diff
1.1 --- a/potamus/receipt Sun Apr 21 20:00:24 2019 +0200 1.2 +++ b/potamus/receipt Mon Dec 23 15:29:27 2019 +0000 1.3 @@ -1,21 +1,23 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="potamus" 1.7 -VERSION="15" 1.8 +VERSION="17" 1.9 CATEGORY="multimedia" 1.10 +TAGS="music audio player mp3 ogg flac" 1.11 SHORT_DESC="Unbloated and easy to use GTK+ Audio player." 1.12 MAINTAINER="pankso@slitaz.org" 1.13 LICENSE="GPL3" 1.14 +WEB_SITE="http://offog.org/code/potamus/" 1.15 + 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 -WEB_SITE="http://offog.org/code/potamus/" 1.18 WGET_URL="http://offog.org/files/$TARBALL" 1.19 -TAGS="music audio player mp3 ogg flac" 1.20 + 1.21 +DEPENDS="alsa-lib gtk+ libglade libmad libogg libsamplerate libvorbis" 1.22 +BUILD_DEPENDS="alsa-lib-dev gtk+-dev libglade-dev libmad-dev \ 1.23 + libogg-dev libsamplerate-dev libvorbis-dev" 1.24 + 1.25 HOST_ARCH="i486 arm" 1.26 1.27 -DEPENDS="gtk+ libglade alsa-lib libmad libogg libvorbis libsamplerate" 1.28 -BUILD_DEPENDS="gtk+-dev libglade-dev alsa-lib-dev libmad-dev \ 1.29 -libogg-dev libvorbis-dev libsamplerate-dev" 1.30 - 1.31 # Handle arch install 1.32 case "$SLTAZ_ARCH" in 1.33 i?86) DEPENDS="$DEPENDS flac" ;; 1.34 @@ -32,14 +34,15 @@ 1.35 compile_rules() 1.36 { 1.37 # libmad for MP3 1.38 - ./configure \ 1.39 - --disable-input-modplug \ 1.40 - --disable-input-audiofile \ 1.41 - --disable-input-opus \ 1.42 - --disable-output-ao \ 1.43 - --disable-output-jack \ 1.44 + ./configure \ 1.45 + --disable-input-modplug \ 1.46 + --disable-input-audiofile \ 1.47 + --disable-input-opus \ 1.48 + --disable-output-ao \ 1.49 + --disable-output-jack \ 1.50 $CONFIGURE_ARGS ${ARCH_ARGS} && 1.51 - make && make install && 1.52 + make && 1.53 + make install && 1.54 sed -i s'/Name=.*/Name=Potamus Audio Player/' \ 1.55 ${DESTDIR}/usr/share/applications/*.desktop 1.56 } 1.57 @@ -47,11 +50,10 @@ 1.58 # Rules to gen a SliTaz package suitable for Tazpkg. 1.59 genpkg_rules() 1.60 { 1.61 - mkdir -p $fs/usr/lib $fs/usr/share/pixmaps 1.62 - cp -a $install/usr/bin $fs/usr 1.63 - cp -a $install/usr/share/${PACKAGE} $fs/usr/share 1.64 + mkdir -p $fs/usr/share/pixmaps 1.65 + 1.66 + cp -a $install/usr/bin $fs/usr 1.67 + cp -a $install/usr/share/${PACKAGE} $fs/usr/share 1.68 cp -a $install/usr/share/icons/hicolor/48x48/*/${PACKAGE}.png \ 1.69 $fs/usr/share/pixmaps 1.70 - 1.71 } 1.72 -