Essentially:
find ./ -type f -exec sed -i -e "s/license :'/license : '/g" {} \;
Suggested-by: @LingMan
Reviewed-by: @LingMan
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35210>
19 lines
310 B
Meson
19 lines
310 B
Meson
project(
|
|
'equivalent',
|
|
'rust',
|
|
version : '1.0.1',
|
|
license : 'MIT OR Apache-2.0',
|
|
)
|
|
|
|
lib = static_library(
|
|
'equivalent',
|
|
'src/lib.rs',
|
|
override_options : ['rust_std=2021', 'build.rust_std=2021'],
|
|
rust_abi : 'rust',
|
|
native : true,
|
|
)
|
|
|
|
dep_equivalent = declare_dependency(
|
|
link_with : [lib],
|
|
)
|