7 lines
231 B
Bash
Executable file
7 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
|
|
apt-get update
|
|
apt-get -y build-dep .
|
|
mkdir -p subprojects/scenefx
|
|
wget -qO- 'https://github.com/wlrfx/scenefx/archive/refs/tags/0.2.1.tar.gz' | tar -xz --strip-components=1 -C subprojects/scenefx
|
|
dpkg-buildpackage -b
|