wok-next annotate lvmts/receipt @ rev 21207

try to build asterisk again
author Hans-G?nter Theisgen
date Mon Dec 02 09:52:22 2019 +0100 (2019-12-02)
parents d43bf7aae921
children
rev   line source
pascal@13591 1 # SliTaz package receipt.
pascal@13591 2
pascal@13591 3 PACKAGE="lvmts"
pascal@13591 4 GITHASH="aa722606e6dbdf6c15eb8b9294ad789814592c18"
pascal@13591 5 VERSION=${GITHASH:0:7}
pascal@13591 6 CATEGORY="system-tools"
al@21020 7 SHORT_DESC="Hierarchical Storage Manager utilizing LVM"
pascal@13591 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15308 9 LICENSE="GPL3"
pascal@13591 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13591 11 WEB_SITE="https://github.com/tomato42/lvmts/"
pascal@13591 12 WGET_URL="https://nodeload.github.com/tomato42/lvmts/tarball/$GITHASH"
pascal@13591 13
pascal@17482 14 DEPENDS="lvm2 blktrace libconfuse"
al@20513 15 BUILD_DEPENDS="lvm2-dev libconfuse"
pascal@13591 16
al@21020 17 compile_rules() {
al@21020 18 make -j1 || return 1
al@21020 19
al@21020 20 for i in lvmtscd lvmtscat lvmls lvmtsd lvmdefrag; do
al@21020 21 install -Dm755 $i $install/usr/sbin/$i
pascal@13591 22 done
pascal@13591 23 }
pascal@13591 24
al@21020 25 genpkg_rules() {
pascal@13591 26 cp -a $install/* $fs
pascal@13591 27 }