wok-next view pyradio/receipt @ rev 20443

The rest of my "home work" for update many packages (up to Xorg, GTK and Openbox) for Next and mainly for Next64. Since this point this repository is open for commits. Many errors are expected due to harfbuzz-freetype dependency loop...
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat Feb 24 16:17:33 2018 +0200 (2018-02-24)
parents bf4a09ef1d2e
children d5aab818505e
line source
1 # SliTaz package receipt.
3 PACKAGE="pyradio"
4 VERSION="0.4"
5 CATEGORY="multimedia"
6 SHORT_DESC="Ncurses internet radio player."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="MIT"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.coderholic.com/pyradio/"
11 WGET_URL="git|git://github.com/coderholic/pyradio.git"
12 BRANCH="$VERSION"
14 DEPENDS="ncurses mplayer python"
15 BUILD_DEPENDS="git"
17 # Rules to gen a SliTaz package suitable for Tazpkg.
18 genpkg_rules()
19 {
20 mkdir -p $fs/usr/bin $fs/usr/share/pyradio
21 cp -a $src/pyradio $fs/usr/bin
22 cp -a $src/stations.csv $fs/usr/share/pyradio
23 cp -a $src/README $fs/usr/share/pyradio
24 #cp -a $src/LICENCE $fs/usr/share/pyradio
25 }
27 post_install()
28 {
29 # hack for path to stations file
30 sed -i 's|__file__|"/usr/share/pyradio/"|g' "$1/usr/bin/pyradio"
31 }