wok-next diff gtkpod/receipt @ rev 21020
Cleaning is almost finished... I should proceed to upgrades.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Nov 02 14:15:08 2018 +0200 (2018-11-02) |
parents | a3c581bf52b8 |
children |
line diff
1.1 --- a/gtkpod/receipt Fri Aug 10 12:53:17 2018 +0300 1.2 +++ b/gtkpod/receipt Fri Nov 02 14:15:08 2018 +0200 1.3 @@ -1,36 +1,35 @@ 1.4 -# SliTaz package receipt. 1.5 +# SliTaz package receipt v2. 1.6 1.7 PACKAGE="gtkpod" 1.8 VERSION="1.0.0" 1.9 CATEGORY="multimedia" 1.10 -SHORT_DESC="platform independent GUI for Apple's iPod using GTK2" 1.11 -MAINTAINER="jozee@slitaz.org" 1.12 +SHORT_DESC="Platform independent GUI for Apple's iPod using GTK2" 1.13 +MAINTAINER="devel@slitaz.org" 1.14 LICENSE="GPL2" 1.15 +WEB_SITE="http://www.gtkpod.org/wiki/Home" 1.16 + 1.17 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.18 -WEB_SITE="http://www.gtkpod.org/wiki/Home" 1.19 WGET_URL="$SF_MIRROR/gtkpod/$TARBALL" 1.20 1.21 -DEPENDS="libgpod libid3tag flac libvorbis curl libglade hal" 1.22 -BUILD_DEPENDS="flex libgpod-dev libid3tag-dev flac-dev libvorbis-dev curl curl-dev libglade-dev intltool libplist-dev" 1.23 +BUILD_DEPENDS="flex libgpod-dev libid3tag-dev flac-dev libvorbis-dev curl \ 1.24 +curl-dev libglade-dev intltool libplist-dev" 1.25 1.26 -# Rules to configure and make the package. 1.27 -compile_rules() 1.28 -{ 1.29 - cd $src 1.30 - ./configure --prefix=/usr $CONFIGURE_ARGS && 1.31 +compile_rules() { 1.32 + ./configure \ 1.33 + --prefix=/usr \ 1.34 + $CONFIGURE_ARGS && 1.35 make && 1.36 - make DESTDIR=$DESTDIR install 1.37 + make DESTDIR=$install install 1.38 } 1.39 1.40 -# Rules to gen a SliTaz package suitable for Tazpkg. 1.41 -genpkg_rules() 1.42 -{ 1.43 +genpkg_rules() { 1.44 mkdir -p $fs/usr/share/$PACKAGE/icons/hicolor $fs/usr/share/pixmaps 1.45 cp -a $install/usr/bin $fs/usr 1.46 - cp -a $install/usr/share/$PACKAGE/data $fs/usr/share/$PACKAGE 1.47 - cp -a $install/usr/share/$PACKAGE/scripts $fs/usr/share/$PACKAGE 1.48 + cp -a $install/usr/share/$PACKAGE/data $fs/usr/share/$PACKAGE 1.49 + cp -a $install/usr/share/$PACKAGE/scripts $fs/usr/share/$PACKAGE 1.50 cp -a $install/usr/share/$PACKAGE/icons/hicolor/16x16 \ 1.51 $fs/usr/share/$PACKAGE/icons/hicolor 1.52 cp $install/usr/share/icons/hicolor/48x48/apps/gtkpod.png \ 1.53 $fs/usr/share/pixmaps/gtkpod.png 1.54 + DEPENDS="libgpod libid3tag flac libvorbis curl libglade hal" 1.55 }