comparison x11/xclock/xclock.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 25a95c53d800
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=1.0.8 19 PKGVERSION=1.0.8
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="CUSTOM" 21 PKGLICENSE="CUSTOM"
22 PKGSUMMARY="X.Org simple clock" 22 PKGSUMMARY="X.Org simple clock"
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="x11/libx11 24 PKGDEPENDS="libx11
25 x11/libxmu 25 libxmu
26 x11/libxaw 26 libxaw
27 x11/util-macros:build 27 util-macros:build
28 x11/xorgproto:build" 28 xorgproto:build"
29 PKGOPTIONS="FREETYPE" 29 PKGOPTIONS="FREETYPE"
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 : ${FREETYPE:=yes} 37 : ${FREETYPE:=yes}
38 38
39 if [ "$FREETYPE" = "yes" ]; then 39 if [ "$FREETYPE" = "yes" ]; then
40 PKGDEPENDS="x11/libxft $PKGDEPENDS" 40 PKGDEPENDS="libxft $PKGDEPENDS"
41 with_freetype="--with-xft" 41 with_freetype="--with-xft"
42 else 42 else
43 with_freetype="--without-xft" 43 with_freetype="--without-xft"
44 fi 44 fi
45 45