wok view lvmts/receipt @ rev 19049

Fix the name (lives > lives-exe), desktop file.
author Leonardo Laporte <hackdorte@sapo.pt>
date Sun Apr 17 17:33:06 2016 -0300 (2016-04-17)
parents d1d3baac286f
children 89c8d8b6cf48
line source
1 # SliTaz package receipt.
3 PACKAGE="lvmts"
4 GITHASH="aa722606e6dbdf6c15eb8b9294ad789814592c18"
5 VERSION=${GITHASH:0:7}
6 CATEGORY="system-tools"
7 SHORT_DESC="Hierarchical Storage Manager utilizing LVM."
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="GPL3"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="https://github.com/tomato42/lvmts/"
12 WGET_URL="https://nodeload.github.com/tomato42/lvmts/tarball/$GITHASH"
14 DEPENDS="lvm2 blktrace libconfuse"
15 BUILD_DEPENDS="wget lvm2-dev libconfuse"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 cd $src
21 make -j 1 &&
22 for i in lvmtscd lvmtscat lvmls lvmtsd lvmdefrag ; do
23 install -D -m 755 $i $DESTDIR/usr/sbin/$i
24 done
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 cp -a $install/* $fs
31 }