1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-07-03 00:46:29 +00:00
morpheus/pkgs/xsetroot

12 lines
196 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" xsetroot.c -o xsetroot -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 xsetroot "$root/bin"
2014-02-18 11:12:50 +00:00
cd -
}