Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
cookbook
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
redox-os
cookbook
Commits
631c0996
Commit
631c0996
authored
5 months ago
by
Eva Kurchatova
Browse files
Options
Downloads
Patches
Plain Diff
rvvm: Add RVVM recipe
parent
54bd0731
No related branches found
No related tags found
1 merge request
!402
rvvm: Add RVVM recipe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
recipes/emulators/rvvm/recipe.toml
+36
-0
36 additions, 0 deletions
recipes/emulators/rvvm/recipe.toml
with
36 additions
and
0 deletions
recipes/emulators/rvvm/recipe.toml
0 → 100644
+
36
−
0
View file @
631c0996
[source]
git
=
"https://github.com/LekKit/RVVM.git"
upstream
=
"https://github.com/LekKit/RVVM"
[build]
template
=
"custom"
# SDL2 is tough to link statically, use SDL1 for now
dependencies
=
[
"sdl1"
,
"liborbital"
,
]
script
=
"""
export BUILDDIR="${COOKBOOK_BUILD}"
export DESTDIR="${COOKBOOK_STAGE}"
# Redox currently doesn't support dynamic library loading
export LDFLAGS="$(pkg-config --libs sdl)"
# Networking is currently broken on Redox (missing setsockopt?)
export USE_NET=0
# Use SDL1
export USE_SDL=1
# Building a shared library is currently broken on Redox
export USE_LIB=0
export OS=Redox
# Let's goo
"${COOKBOOK_MAKE}" install -C "${COOKBOOK_SOURCE}"
"""
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