repo/wayland/libinput/build

38 lines
735 B
Plaintext
Raw Normal View History

2019-06-28 07:07:46 +00:00
#!/bin/sh -e
2021-07-09 09:30:40 +00:00
patch -p1 < evdev-wrap.patch
2021-07-08 13:26:10 +00:00
export CFLAGS="$CFLAGS -fPIC"
2021-07-09 09:30:40 +00:00
for pkg in mtdev evdev; do (
cd "$pkg"
2021-07-08 13:26:10 +00:00
./configure \
--prefix=/usr \
--disable-shared \
--disable-gcov
make
make DESTDIR="$OLDPWD" install
2021-07-09 09:30:40 +00:00
) done
2021-07-08 13:26:10 +00:00
export PKG_CONFIG_PATH="$PWD/usr/lib/pkgconfig"
export CFLAGS="$CFLAGS -I$PWD/usr/include -L$PWD/usr/lib"
2021-07-09 09:30:40 +00:00
export CFLAGS="$CFLAGS -I$PWD/usr/include/libevdev-1.0"
2019-10-07 21:07:48 +00:00
export DESTDIR="$1"
2019-06-28 07:07:46 +00:00
meson \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--libexecdir=/usr/lib \
2021-07-09 09:30:40 +00:00
-Ddefault_library=both \
2019-06-28 07:07:46 +00:00
-Ddebug-gui=false \
-Ddocumentation=false \
-Dtests=false \
-Dlibwacom=false \
. output
ninja -C output
2019-10-07 21:07:48 +00:00
ninja -C output install