1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-27 08:38:33 +00:00
morpheus/pkgs/tinywm

12 lines
190 B
Plaintext
Raw Normal View History

2014-02-18 11:12:50 +00:00
build() {
cd stuff
2014-02-20 16:10:47 +00:00
x86_64-musl-linux-gcc -I"$libcroot/include" -L"$libcroot/lib" tinywm.c -o tinywm -lX11 -static || return 1
2014-02-18 11:12:50 +00:00
cd -
}
install() {
cd stuff
2014-02-20 16:10:47 +00:00
cp tinywm "$root/bin"
2014-02-18 11:12:50 +00:00
cd -
}