comparison x11/mkfontscale/mkfontscale.sh @ 902:a133976e0783

vanilla: remove all origins, closes #2203
author David Demelier <markand@malikania.fr>
date Mon, 26 Aug 2019 12:14:53 +0200
parents 25cecc6dca48
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=1.2.0 19 PKGVERSION=1.2.0
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="CUSTOM" 21 PKGLICENSE="CUSTOM"
22 PKGSUMMARY="X.Org tool to create index of scalable fonts" 22 PKGSUMMARY="X.Org tool to create index of scalable fonts"
23 PKGDOWNLOAD="https://www.x.org/releases/individual/app/$PKGNAME-$PKGVERSION.tar.gz" 23 PKGDOWNLOAD="https://www.x.org/releases/individual/app/$PKGNAME-$PKGVERSION.tar.gz"
24 PKGDEPENDS="compression/zlib 24 PKGDEPENDS="zlib
25 fonts/freetype 25 freetype
26 x11/libfontenc 26 libfontenc
27 x11/util-macros:build 27 util-macros:build
28 x11/xorgproto:build" 28 xorgproto:build"
29 PKGOPTIONS="BZIP2" 29 PKGOPTIONS="BZIP2"
30 30
31 : ${CHOST:=$(uname -m)-linux-musl} 31 : ${CHOST:=$(uname -m)-linux-musl}
32 : ${CBUILD:=$(uname -m)-linux-musl} 32 : ${CBUILD:=$(uname -m)-linux-musl}
33 : ${CC:=clang} 33 : ${CC:=clang}
35 : ${LDFLAGS:=} 35 : ${LDFLAGS:=}
36 : ${LIBS:=} 36 : ${LIBS:=}
37 : ${BZIP2:=no} 37 : ${BZIP2:=no}
38 38
39 if [ "$BZIP2" = "yes" ]; then 39 if [ "$BZIP2" = "yes" ]; then
40 PKGDEPENDS="compression/bzip2 $PKGDEPENDS" 40 PKGDEPENDS="bzip2 $PKGDEPENDS"
41 with_bzip2="--with-bzip2" 41 with_bzip2="--with-bzip2"
42 else 42 else
43 with_bzip2="--without-bzip2" 43 with_bzip2="--without-bzip2"
44 fi 44 fi
45 45