comparison fonts/font-misc-misc/font-misc-misc.sh @ 606:25cecc6dca48

vanilla: use POSIX shell and busybox tar
author David Demelier <markand@malikania.fr>
date Thu, 18 Jul 2019 07:26:43 +0200
parents bad483aace64
children a133976e0783
comparison
equal deleted inserted replaced
605:860ab66f5f71 606:25cecc6dca48
24 PKGDEPENDS="x11/bdftopcf:build x11/font-util:build x11/util-macros:build" 24 PKGDEPENDS="x11/bdftopcf:build x11/font-util:build x11/util-macros:build"
25 25
26 build() 26 build()
27 { 27 {
28 rm -rf $PKGNAME-$PKGVERSION 28 rm -rf $PKGNAME-$PKGVERSION
29 tar xvaf $PKGNAME-$PKGVERSION.tar.gz 29 tar xvf $PKGNAME-$PKGVERSION.tar.gz
30 pushd $PKGNAME-$PKGVERSION 30 cd $PKGNAME-$PKGVERSION
31 31
32 ./configure --prefix= 32 ./configure --prefix=
33 make 33 make
34 make install DESTDIR=$DESTDIR 34 make install DESTDIR=$DESTDIR
35 35
36 popd 36 cd ..
37 rm -rf $PKGNAME-$PKGVERSION 37 rm -rf $PKGNAME-$PKGVERSION
38 } 38 }