wok-next annotate ncmpcpp/receipt @ rev 20215
rsync, x11vnc, xautomation, xinput-calibrator, xlockmore: update bdeps
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Nov 05 09:09:04 2017 +0100 (2017-11-05) |
parents | 9e01bc6321ea |
children | d43bf7aae921 |
rev | line source |
---|---|
paul@4546 | 1 # SliTaz package receipt. |
paul@4546 | 2 |
paul@4546 | 3 PACKAGE="ncmpcpp" |
paul@13373 | 4 VERSION="0.5.10" |
paul@4546 | 5 CATEGORY="multimedia" |
paul@4546 | 6 SHORT_DESC="Ncurses mpd client inspired by ncmpc." |
paul@4546 | 7 MAINTAINER="paul@slitaz.org" |
pascal@15002 | 8 LICENSE="GPL2" |
paul@4546 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
paul@4546 | 10 WEB_SITE="http://unkart.ovh.org/ncmpcpp/" |
pascal@13374 | 11 WGET_URL="http://ncmpcpp.rybczak.net/stable/$TARBALL" |
jozee@4969 | 12 TAGS="music audio player" |
paul@4546 | 13 |
pascal@19952 | 14 DEPENDS="ncurses taglib mpd curl libmpdclient" |
pascal@15002 | 15 BUILD_DEPENDS="ncurses-dev taglib taglib-dev curl-dev libmpdclient-dev" |
pascal@15002 | 16 |
paul@4546 | 17 # Rules to configure and make the package. |
paul@4546 | 18 compile_rules() |
paul@4546 | 19 { |
paul@4546 | 20 ./configure \ |
paul@4546 | 21 --prefix=/usr \ |
paul@4546 | 22 --enable-clock \ |
paul@4546 | 23 --with-taglib \ |
paul@4546 | 24 --with-curl \ |
paul@4546 | 25 --mandir=/usr/share/man \ |
paul@4546 | 26 $CONFIGURE_ARGS && |
slaxemulator@10205 | 27 make && make install |
paul@4546 | 28 } |
paul@4546 | 29 |
paul@4546 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
paul@4546 | 31 genpkg_rules() |
paul@4546 | 32 { |
pascal@17085 | 33 mkdir -p $fs/usr/share $fs/etc/skel/.ncmpcpp |
pascal@13374 | 34 cp -a $install/usr/bin $fs/usr |
pascal@13374 | 35 cp -a $install/usr/share/doc $fs/usr/share |
pascal@17085 | 36 ln $fs/usr/share/doc/ncmpcpp/config $fs/etc/skel/.ncmpcpp |
pascal@17085 | 37 ln $fs/usr/share/doc/ncmpcpp/keys $fs/etc/skel/.ncmpcpp |
paul@4546 | 38 } |
paul@4546 | 39 |
paul@4546 | 40 post_install() |
paul@4546 | 41 { |
pascal@18730 | 42 for i in $(ls "$1/home" 2> /dev/null); do |
pascal@18730 | 43 [ -d "$1/home/$i/.ncmpcpp" ] && continue |
pascal@17085 | 44 echo -n "Enabling configuration files for $i ..." |
pascal@18730 | 45 cp -a "$1/etc/skel/.ncmpcpp" "$1/home/$i/" |
pascal@18730 | 46 sed -i 's|#mpd_music_dir = ""|mpd_music_dir = "/home/'$i'/music"|' "/home/$i/.ncmpcpp/config" |
pascal@17080 | 47 # Change permissions also |
pascal@18730 | 48 chroot "$1/" chown -R $(stat -c "%u.%g" "$1/home/$i") "/home/$i/.ncmpcpp" |
pascal@17080 | 49 done |
paul@4546 | 50 status |
paul@4546 | 51 } |
paul@4546 | 52 |
paul@4546 | 53 post_remove() |
paul@4546 | 54 { |
paul@4546 | 55 echo -n "Removing configuration files..." |
pascal@17080 | 56 rm -rf /home/*/.ncmpcpp |
paul@4546 | 57 status |
paul@4546 | 58 } |