wok view lvmts/receipt @ rev 14314

Add: terminology (0.3.0)
author Dominique Corbex <domcox@slitaz.org>
date Sun Apr 07 10:28:42 2013 +0200 (2013-04-07)
parents
children d1d3baac286f
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 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="https://github.com/tomato42/lvmts/"
11 WGET_URL="https://nodeload.github.com/tomato42/lvmts/tarball/$GITHASH"
13 DEPENDS="lvm blktrace libconfuse"
14 BUILD_DEPENDS="wget lvm2-dev libconfuse"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 make &&
21 for i in lvmtscd lvmtscat lvmls lvmtsd lvmdefrag ; do
22 install -D -m 755 $i $DESTDIR/usr/sbin/$i
23 done
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 cp -a $install/* $fs
30 }