mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-01 11:34:17 +01:00
Just use the one from netbsd-curses, which has been patched to remove keys mapping to same sequence.
34 lines
819 B
Lua
34 lines
819 B
Lua
cflags{
|
|
[[-D 'VERSION="0.7"']],
|
|
'-I $dir',
|
|
'-isystem $builddir/pkg/fontconfig/include',
|
|
'-isystem $builddir/pkg/libxkbcommon/include',
|
|
'-isystem $builddir/pkg/linux-headers/include',
|
|
'-isystem $builddir/pkg/pixman/include',
|
|
'-isystem $builddir/pkg/wayland/include',
|
|
'-isystem $builddir/pkg/wayland-protocols/include',
|
|
'-isystem $builddir/pkg/wld/include',
|
|
}
|
|
|
|
pkg.deps = {
|
|
'pkg/fontconfig/headers',
|
|
'pkg/libxkbcommon/headers',
|
|
'pkg/linux-headers/headers',
|
|
'pkg/pixman/headers',
|
|
'pkg/wayland/headers',
|
|
'pkg/wayland-protocols/headers',
|
|
'pkg/wld/headers',
|
|
}
|
|
|
|
exe('st', [[st.c $builddir/pkg/(
|
|
libxkbcommon/libxkbcommon.a
|
|
wayland/libwayland-client.a.d
|
|
wayland/libwayland-cursor.a.d
|
|
wayland-protocols/xdg-shell-protocol.c.o
|
|
wld/libwld.a.d
|
|
)]])
|
|
file('bin/st', '755', '$outdir/st')
|
|
man{'st.1'}
|
|
|
|
fetch 'git'
|