wok view ncmpcpp/receipt @ rev 15995

freetype: add to ARM arch
author Christophe Lincoln <pankso@slitaz.org>
date Sun Mar 02 15:43:44 2014 +0100 (2014-03-02)
parents 126b68f54ad4
children 633aff33b052
line source
1 # SliTaz package receipt.
3 PACKAGE="ncmpcpp"
4 VERSION="0.5.10"
5 CATEGORY="multimedia"
6 SHORT_DESC="Ncurses mpd client inspired by ncmpc."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://unkart.ovh.org/ncmpcpp/"
11 WGET_URL="http://ncmpcpp.rybczak.net/stable/$TARBALL"
12 TAGS="music audio player"
14 DEPENDS="ncurses taglib mpd curl libmpdclient ncursesw"
15 BUILD_DEPENDS="ncurses-dev taglib taglib-dev curl-dev libmpdclient-dev"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 ./configure \
22 --prefix=/usr \
23 --enable-clock \
24 --with-taglib \
25 --with-curl \
26 --mandir=/usr/share/man \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/share
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/share/doc $fs/usr/share
37 }
39 post_install()
40 {
41 echo -n "Enabling configuration files..."
42 mkdir -p $1/home/tux/.ncmpcpp
43 cp $1/usr/share/doc/ncmpcpp/config /home/tux/.ncmpcpp
44 cp $1/usr/share/doc/ncmpcpp/keys /home/tux/.ncmpcpp
45 sed -i 's|#mpd_music_dir = ""|mpd_music_dir = "/home/tux/music"|' /home/tux/.ncmpcpp/config
46 # Change permissions also
47 chown -R tux:users /home/tux/.ncmpcpp
48 status
49 }
51 post_remove()
52 {
53 echo -n "Removing configuration files..."
54 rm -rf /home/tux/.ncmpcpp
55 status
56 }