wok diff pyradio/receipt @ rev 23689
updated sysstat (12.1.7 -> 12.3.2)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Apr 26 17:56:55 2020 +0100 (2020-04-26) |
parents | 5d50a02468c7 |
children | 5ea0ce1cecc0 |
line diff
1.1 --- a/pyradio/receipt Sun May 19 19:23:11 2019 +0200 1.2 +++ b/pyradio/receipt Sun Apr 26 17:56:55 2020 +0100 1.3 @@ -1,31 +1,31 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="pyradio" 1.7 -VERSION="0.7.4" 1.8 +VERSION="0.8.7.2" 1.9 CATEGORY="multimedia" 1.10 SHORT_DESC="Ncurses internet radio player." 1.11 MAINTAINER="paul@slitaz.org" 1.12 LICENSE="MIT" 1.13 -TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.14 -WEB_SITE="http://www.coderholic.com/pyradio/" 1.15 -WGET_URL="git|git://github.com/coderholic/pyradio.git" 1.16 -BRANCH="$VERSION" 1.17 +WEB_SITE="https://www.coderholic.com/pyradio/" 1.18 1.19 -DEPENDS="ncurses mplayer python" 1.20 -BUILD_DEPENDS="git python-setuptools" 1.21 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.22 +WGET_URL="https://github.com/coderholic/$PACKAGE/archive/$VERSION.tar.gz" 1.23 + 1.24 +DEPENDS="mplayer ncurses python" 1.25 +BUILD_DEPENDS="python-setuptools" 1.26 1.27 # Rules to configure and make the package. 1.28 compile_rules() 1.29 { 1.30 - sed -i '1a\# -*- coding: utf-8 -*-' pyradio/radio.py 1.31 - python setup.py build 1.32 + sed -i '1a\# -*- coding: utf-8 -*-' \ 1.33 + pyradio/radio.py 1.34 + 1.35 + python setup.py build && 1.36 python setup.py install --root=$DESTDIR 1.37 } 1.38 1.39 # Rules to gen a SliTaz package suitable for Tazpkg. 1.40 genpkg_rules() 1.41 { 1.42 - cp -a $install/* $fs 1.43 + cp -a $install/* $fs 1.44 } 1.45 - 1.46 -