comparison Templates/build/perl.sh @ 1339:44712c9002e9

misc: update templates
author David Demelier <markand@malikania.fr>
date Wed, 22 Dec 2021 20:38:57 +0100
parents 325631424c65
children
comparison
equal deleted inserted replaced
1338:1cccfc48f860 1339:44712c9002e9
26 # PKGOPTIONS="FOO BAR BAZ" 26 # PKGOPTIONS="FOO BAR BAZ"
27 27
28 build() 28 build()
29 { 29 {
30 rm -rf $PKGNAME-$PKGVERSION 30 rm -rf $PKGNAME-$PKGVERSION
31 tar xvf $PKGNAME-$PKGVERSION.tar.gz 31 tar -xvf $PKGNAME-$PKGVERSION.tar.gz
32 cd $PKGNAME-$PKGVERSION 32 cd $PKGNAME-$PKGVERSION
33 33
34 perl Makefile.PL INSTALLDIRS=vendor 34 perl Makefile.PL INSTALLDIRS=vendor
35 make DESTDIR=$DESTDIR install 35 make DESTDIR=$DESTDIR install
36 36