comparison lib/libinput/libinput.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 6633bc51db0e
children ddab65a5b3f5
comparison
equal deleted inserted replaced
901:e2de15b7d2b1 902:a133976e0783
19 PKGVERSION=1.12.5 19 PKGVERSION=1.12.5
20 PKGREVISION=1 20 PKGREVISION=1
21 PKGLICENSE="MIT" 21 PKGLICENSE="MIT"
22 PKGSUMMARY="library to handle input devices in wayland" 22 PKGSUMMARY="library to handle input devices in wayland"
23 PKGDOWNLOAD="https://www.freedesktop.org/software/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz" 23 PKGDOWNLOAD="https://www.freedesktop.org/software/$PKGNAME/$PKGNAME-$PKGVERSION.tar.xz"
24 PKGDEPENDS="lib/libevdev lib/mtdev" 24 PKGDEPENDS="libevdev mtdev"
25 PKGOPTIONS="DOXYGEN WACOM" 25 PKGOPTIONS="DOXYGEN WACOM"
26 26
27 : ${CC:=clang} 27 : ${CC:=clang}
28 : ${CFLAGS:=-O2} 28 : ${CFLAGS:=-O2}
29 : ${LDFLAGS:=} 29 : ${LDFLAGS:=}
30 : ${LIBS:=} 30 : ${LIBS:=}
31 : ${DOXYGEN:=yes} 31 : ${DOXYGEN:=yes}
32 : ${WACOM:=yes} 32 : ${WACOM:=yes}
33 33
34 if [ "$DOXYGEN" = "yes" ]; then 34 if [ "$DOXYGEN" = "yes" ]; then
35 PKGDEPENDS="dev/doxygen $PKGDEPENDS" 35 PKGDEPENDS="doxygen $PKGDEPENDS"
36 with_doxygen="-D documentation=true" 36 with_doxygen="-D documentation=true"
37 else 37 else
38 with_doxygen="-D documentation=false" 38 with_doxygen="-D documentation=false"
39 fi 39 fi
40 40
41 if [ "$WACOM" = "yes" ]; then 41 if [ "$WACOM" = "yes" ]; then
42 PKGDEPENDS="lib/libwacom $PKGDEPENDS" 42 PKGDEPENDS="libwacom $PKGDEPENDS"
43 with_wacom="-D libwacom=true" 43 with_wacom="-D libwacom=true"
44 else 44 else
45 with_wacom="-D libwacom=false" 45 with_wacom="-D libwacom=false"
46 fi 46 fi
47 47