wok view mt-daapd/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 9689f1b75619
children d3556b8f5c3d
line source
1 # SliTaz package receipt.
3 PACKAGE="mt-daapd"
4 VERSION="0.2.4.2"
5 CATEGORY="multimedia"
6 SHORT_DESC="Media server for the Roku SoundBridge and iTunes."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://fireflymediaserver.org/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
12 PROVIDE="firefly"
14 DEPENDS="gdbm libid3tag zlib"
15 BUILD_DEPENDS="gdbm-dev libid3tag-dev glib"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://sourceforge.net/projects/mt-daapd/files/mt-daapd/ 2>/dev/null | \
21 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
22 sed '/scope="row/!d;s|.*/mt-daapd/||;s|/.*||;q'
23 }
25 # Rules to configure and make the package.
26 #
27 compile_rules()
28 {
29 ./configure --prefix=/usr $CONFIGURE_ARGS &&
30 make &&
31 make DESTDIR=$DESTDIR install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 cp -a $install/usr $fs
38 }