1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-16 14:38:33 +00:00
morpheus/pkgs/irc

14 lines
198 B
Plaintext
Raw Normal View History

2013-09-27 12:47:31 +00:00
fetch() {
cp $top/stuff/irc.c src
}
build() {
pushd src
x86_64-linux-musl-gcc -o irc irc.c -static -I$libcroot/include/ncurses -lncurses || return 1
popd
}
install() {
cp src/irc $root/bin
}