comparison xfce/xfce4-appfinder/xfce4-appfinder.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 ae55d9077f70
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=4.14.0 19 PKGVERSION=4.14.0
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="GPLv2" 21 PKGLICENSE="GPLv2"
22 PKGSUMMARY="Xfce applications finder" 22 PKGSUMMARY="Xfce applications finder"
23 PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2" 23 PKGDOWNLOAD="http://archive.xfce.org/xfce/${PKGVERSION%.*}/src/$PKGNAME-$PKGVERSION.tar.bz2"
24 PKGDEPENDS="graphics/gtk 24 PKGDEPENDS="gtk
25 lib/glib 25 glib
26 xfce/garcon 26 garcon
27 xfce/libxfce4ui 27 libxfce4ui
28 xfce/libxfce4util 28 libxfce4util
29 xfce/xfconf" 29 xfconf"
30 PKGOPTIONS="NLS" 30 PKGOPTIONS="NLS"
31 31
32 : ${CHOST:=$(uname -m)-linux-musl} 32 : ${CHOST:=$(uname -m)-linux-musl}
33 : ${CBUILD:=$(uname -m)-linux-musl} 33 : ${CBUILD:=$(uname -m)-linux-musl}
34 : ${CC:=clang} 34 : ${CC:=clang}
36 : ${LDFLAGS:=} 36 : ${LDFLAGS:=}
37 : ${LIBS:=} 37 : ${LIBS:=}
38 : ${NLS:=yes} 38 : ${NLS:=yes}
39 39
40 if [ "$NLS" = "yes" ]; then 40 if [ "$NLS" = "yes" ]; then
41 PKGDEPENDS="core/gettext $PKGDEPENDS" 41 PKGDEPENDS="gettext $PKGDEPENDS"
42 with_nls="--enable-nls" 42 with_nls="--enable-nls"
43 else 43 else
44 with_nls="--disable-nls" 44 with_nls="--disable-nls"
45 fi 45 fi
46 46