wok view gmpc/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents cb67b4f8be05
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gmpc"
4 VERSION="11.8.16"
5 CATEGORY="multimedia"
6 MAINTAINER="jozee@slitaz.org"
7 LICENSE="GPL2"
8 SHORT_DESC="A GTK2 client for MPD"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://gmpclient.org"
11 WGET_URL="https://download.sarine.nl/Programs/${PACKAGE}/${VERSION%.*}/$TARBALL"
12 HOST_ARCH="i486 arm"
14 DEPENDS="libglade libmpd curl xorg-libSM libsoup libsexy mpd sqlite libtasn1"
15 BUILD_DEPENDS="gob2-dev libglade-dev libmpd libmpd-dev curl-dev sqlite-dev \
16 xorg-libSM-dev libsoup-dev libsexy-dev xcb-util-dev util-linux-uuid-dev flex"
18 case "$ARCH" in
19 i?86) BUILD_DEPENDS="$BUILD_DEPENDS vala"
20 esac
22 # What is the latest version available today?
23 current_version()
24 {
25 wget -O - https://github.com/DaveDavenport/gmpc/tags 2>/dev/null | \
26 sed '/archive.*tar/!d;s|.*/[a-z-]*\(.*\).tar.*|\1|;q'
27 }
29 # Rules to configure and make the package.
30 compile_rules() {
31 ./configure \
32 --enable-system-libsexy \
33 --disable-shave \
34 --disable-unique \
35 $CONFIGURE_ARGS &&
36 make || return 1
37 sed -i 's|GNOME;AudioVideo;|GTK;AudioVideo;Player;|' data/${PACKAGE}.desktop
38 make install
39 }
41 # Rules to gen a SliTaz package suitable for Tazpkg.
42 genpkg_rules()
43 {
44 mkdir -p $fs/usr/share/icons/hicolor
45 cp -a $install/usr/bin $fs/usr
46 cp -a $install/usr/share/$PACKAGE $fs/usr/share
47 cp -a $install/usr/share/icons/hicolor/16x16 \
48 $fs/usr/share/icons/hicolor
50 }