mirror of
https://github.com/oasislinux/oasis.git
synced 2026-06-21 15:37:15 +02:00
37 lines
596 B
Lua
37 lines
596 B
Lua
cflags{
|
|
'-std=c11', '-Wall', '-Wextra', '-Wpedantic',
|
|
'-Wno-maybe-uninitialized',
|
|
'-D _GNU_SOURCE',
|
|
'-isystem $builddir/pkg/libtls-bearssl/include',
|
|
'-isystem $builddir/pkg/netbsd-curses/include',
|
|
}
|
|
|
|
pkg.deps = {
|
|
'pkg/libtls-bearssl/headers',
|
|
'pkg/netbsd-curses/headers',
|
|
}
|
|
|
|
exe('catgirl', [[
|
|
buffer.c
|
|
chat.c
|
|
command.c
|
|
complete.c
|
|
config.c
|
|
edit.c
|
|
filter.c
|
|
handle.c
|
|
input.c
|
|
irc.c
|
|
log.c
|
|
ui.c
|
|
url.c
|
|
window.c
|
|
xdg.c
|
|
$builddir/pkg/libtls-bearssl/libtls.a.d
|
|
$builddir/pkg/netbsd-curses/libcurses.a.d
|
|
]])
|
|
file('bin/catgirl', '755', '$outdir/catgirl')
|
|
man{'catgirl.1'}
|
|
|
|
fetch 'git'
|