18 lines
339 B
Bash
18 lines
339 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
apt-get update && apt-get install -y git libudev-dev libseat-dev libxkbcommon-dev libinput-dev libgbm-dev
|
|
|
|
mkdir -p /src/
|
|
cd /src/
|
|
|
|
git clone https://github.com/pop-os/cosmic-comp.git
|
|
cd cosmic-comp
|
|
|
|
make vendor
|
|
make all DEBUG=1 VENDOR=1
|
|
|
|
mkdir -p /out/
|
|
mv target/debug/cosmic-comp /out/cosmic-comp
|