wok view tmux-mem-cpu-load/receipt @ rev 17080

ncmpcpp/receipt, remind/receipt, tiptop/receipt, tmux-mem-cpu-load/receipt: update user config file
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Aug 24 21:21:42 2014 +0200 (2014-08-24)
parents e10c58dd2635
children ce9cbd90365a
line source
1 # SliTaz package receipt.
3 PACKAGE="tmux-mem-cpu-load"
4 VERSION="2.2.1"
5 CATEGORY="utilities"
6 SHORT_DESC="CPU, RAM memory, and load monitor for use with tmux."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="Apache"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="https://github.com/thewtex/tmux-mem-cpu-load"
11 WGET_URL="git|git://github.com/thewtex/tmux-mem-cpu-load"
13 DEPENDS="tmux"
14 BUILD_DEPENDS="cmake python bzip2 git"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 cmake . -DCMAKE_INSTALL_PREFIX=/usr
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $install/usr/bin $fs/usr
29 }
31 post_install()
32 {
33 echo -n "Checking for .tmux.conf..."
34 for i in $(ls $1/home); do
35 grep -qs "tmux-mem-cpu-load" /home/$i/.tmux.conf && continue
36 cat >> /home/$i/.tmux.conf << EOT
37 # tmux-mem-cpu-load
38 set -g status-interval 2
39 set -g status-right "#[fg=black,bg=green]#(tmux-mem-cpu-load 2)#[default]"
40 EOT
42 chroot $1/ chown $i.users /home/$i/.tmux.conf
43 done
44 status
45 }