logo

oasis

Own branch of Oasis Linux (upstream: <https://git.sr.ht/~mcf/oasis/>) git clone https://anongit.hacktivis.me/git/oasis.git

gen.lua (596B)


  1. cflags{
  2. '-std=c11', '-Wall', '-Wextra', '-Wpedantic',
  3. '-Wno-maybe-uninitialized',
  4. '-D _GNU_SOURCE',
  5. '-isystem $builddir/pkg/libtls-bearssl/include',
  6. '-isystem $builddir/pkg/netbsd-curses/include',
  7. }
  8. pkg.deps = {
  9. 'pkg/libtls-bearssl/headers',
  10. 'pkg/netbsd-curses/headers',
  11. }
  12. exe('catgirl', [[
  13. buffer.c
  14. chat.c
  15. command.c
  16. complete.c
  17. config.c
  18. edit.c
  19. filter.c
  20. handle.c
  21. input.c
  22. irc.c
  23. log.c
  24. ui.c
  25. url.c
  26. window.c
  27. xdg.c
  28. $builddir/pkg/libtls-bearssl/libtls.a.d
  29. $builddir/pkg/netbsd-curses/libcurses.a.d
  30. ]])
  31. file('bin/catgirl', '755', '$outdir/catgirl')
  32. man{'catgirl.1'}
  33. fetch 'git'