wok-next diff 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
line diff
     1.1 --- a/lvmts/receipt	Wed Mar 21 15:58:17 2018 +0200
     1.2 +++ b/lvmts/receipt	Mon Dec 02 09:52:22 2019 +0100
     1.3 @@ -4,7 +4,7 @@
     1.4  GITHASH="aa722606e6dbdf6c15eb8b9294ad789814592c18"
     1.5  VERSION=${GITHASH:0:7}
     1.6  CATEGORY="system-tools"
     1.7 -SHORT_DESC="Hierarchical Storage Manager utilizing LVM."
     1.8 +SHORT_DESC="Hierarchical Storage Manager utilizing LVM"
     1.9  MAINTAINER="pascal.bellard@slitaz.org"
    1.10  LICENSE="GPL3"
    1.11  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.12 @@ -14,19 +14,14 @@
    1.13  DEPENDS="lvm2 blktrace libconfuse"
    1.14  BUILD_DEPENDS="lvm2-dev libconfuse"
    1.15  
    1.16 -# Rules to configure and make the package.
    1.17 -compile_rules()
    1.18 -{
    1.19 -	cd $src
    1.20 -	make -j 1 && 
    1.21 -	for i in lvmtscd lvmtscat lvmls lvmtsd lvmdefrag ; do
    1.22 -		install -D -m 755 $i $DESTDIR/usr/sbin/$i
    1.23 +compile_rules() {
    1.24 +	make -j1 || return 1
    1.25 +
    1.26 +	for i in lvmtscd lvmtscat lvmls lvmtsd lvmdefrag; do
    1.27 +		install -Dm755 $i $install/usr/sbin/$i
    1.28  	done
    1.29  }
    1.30  
    1.31 -# Rules to gen a SliTaz package suitable for Tazpkg.   
    1.32 -genpkg_rules()                                      
    1.33 -{
    1.34 +genpkg_rules() {
    1.35  	cp -a $install/* $fs
    1.36  }
    1.37 -