mirror of
https://gitlab.freedesktop.org/libinput/libinput.git
synced 2026-05-03 14:18:09 +02:00
For ubuntu, we need to enable some special packages, so use a script. Signed-off-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
13 lines
198 B
Bash
13 lines
198 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
set -x
|
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
apt-get install -y software-properties-common
|
|
add-apt-repository universe
|
|
apt-get update
|
|
apt-get -y upgrade
|
|
|
|
apt-get install -y $@
|