wok view pyradio/receipt @ rev 16719

open-folder-menu.sh: fix open users home folder
author Richard Dunbar <mojo@slitaz.org>
date Sun Jun 01 11:42:05 2014 +0000 (2014-06-01)
parents 1a734f9c5581
children 9e01bc6321ea
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 }