comparison x11/xset/xset.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
35 : ${LIBS:=} 35 : ${LIBS:=}
36 36
37 build() 37 build()
38 { 38 {
39 rm -rf $PKGNAME-$PKGVERSION 39 rm -rf $PKGNAME-$PKGVERSION
40 tar xvaf $PKGNAME-$PKGVERSION.tar.gz 40 tar xvf $PKGNAME-$PKGVERSION.tar.gz
41 pushd $PKGNAME-$PKGVERSION 41 cd $PKGNAME-$PKGVERSION
42 42
43 # --without-fontcache => libXfontcache is outdated. 43 # --without-fontcache => libXfontcache is outdated.
44 CC="$CC" \ 44 CC="$CC" \
45 CFLAGS="$CFLAGS" \ 45 CFLAGS="$CFLAGS" \
46 LDFLAGS="$LDFLAGS" \ 46 LDFLAGS="$LDFLAGS" \
51 --prefix= \ 51 --prefix= \
52 --without-fontcache 52 --without-fontcache
53 make 53 make
54 make install DESTDIR=$DESTDIR 54 make install DESTDIR=$DESTDIR
55 55
56 popd 56 cd ..
57 rm -rf $PKGNAME-$PKGVERSION 57 rm -rf $PKGNAME-$PKGVERSION
58 } 58 }