Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
W
wireplumber
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pkg
wireplumber
Commits
404d0168
Commit
404d0168
authored
4 years ago
by
George Kiagiadakis
Browse files
Options
Downloads
Patches
Plain Diff
meson: add dependency on lua 5.3
parent
a2181fc3
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+2
-0
2 additions, 0 deletions
.gitignore
meson.build
+12
-0
12 additions, 0 deletions
meson.build
subprojects/lua.wrap
+11
-0
11 additions, 0 deletions
subprojects/lua.wrap
with
25 additions
and
0 deletions
.gitignore
+
2
−
0
View file @
404d0168
build/
subprojects/cpptoml/
subprojects/lua-*
subprojects/packagecache/
src/config/*testsrc.node
This diff is collapsed.
Click to expand it.
meson.build
+
12
−
0
View file @
404d0168
...
...
@@ -40,6 +40,18 @@ gio_dep = dependency('gio-2.0', version : '== ' + gobject_dep.version())
giounix_dep
=
dependency
(
'gio-unix-2.0'
,
version
:
'== '
+
gobject_dep
.
version
())
pipewire_dep
=
dependency
(
'libpipewire-0.3'
)
lua_dep
=
dependency
(
'lua'
,
version
:
'>= 5.3.0'
,
required
:
false
)
if
not
lua_dep
.
found
()
lua_dep
=
dependency
(
'lua5.3'
,
version
:
'>= 5.3.0'
,
required
:
false
)
if
not
lua_dep
.
found
()
lua_dep
=
dependency
(
'lua-5.3'
,
version
:
'>= 5.3.0'
,
required
:
false
)
if
not
lua_dep
.
found
()
lua_proj
=
subproject
(
'lua'
)
lua_dep
=
lua_proj
.
get_variable
(
'lua_dep'
)
endif
endif
endif
gnome
=
import
(
'gnome'
)
pkgconfig
=
import
(
'pkgconfig'
)
gir
=
find_program
(
'g-ir-scanner'
,
required
:
get_option
(
'introspection'
))
...
...
This diff is collapsed.
Click to expand it.
subprojects/lua.wrap
0 → 100644
+
11
−
0
View file @
404d0168
[wrap-file]
directory = lua-5.3.6
source_url = https://www.lua.org/ftp/lua-5.3.6.tar.gz
source_filename = lua-5.3.6.tar.gz
source_hash = fc5fd69bb8736323f026672b1b7235da613d7177e72558893a0bdcd320466d60
patch_url = https://wrapdb.mesonbuild.com/v1/projects/lua/5.3.6/1/get_zip
patch_filename = lua-5.3.6-1-wrap.zip
patch_hash = dd045301a56c7c1fb8d4545cadb93981fe95c44c9526cb58cc75a1b74a2c5116
[provides]
lua-5.3 = lua_dep
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment