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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
Wildan Mubarok
cookbook
Commits
f57cd8df
Commit
f57cd8df
authored
8 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Plain Diff
Merge branch 'ids1024-lua'
parents
c20fed78
81422ff2
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
cook.sh
+34
-8
34 additions, 8 deletions
cook.sh
recipes/lua/recipe.sh
+33
-0
33 additions, 0 deletions
recipes/lua/recipe.sh
with
69 additions
and
8 deletions
.gitignore
+
2
−
0
View file @
f57cd8df
build
build
repo
repo
source
source.tar
stage
stage
stage.tar
stage.tar
This diff is collapsed.
Click to expand it.
cook.sh
+
34
−
8
View file @
f57cd8df
...
@@ -48,19 +48,45 @@ function op {
...
@@ -48,19 +48,45 @@ function op {
op
$1
unfetch
op
$1
unfetch
;;
;;
fetch
)
fetch
)
if
[
!
-d
build
]
if
[
-n
"
$TAR
"
]
then
then
git clone
--recursive
"
$GIT
"
build
if
[
!
-f
source.tar
]
then
wget
"
$TAR
"
-O
source.tar
fi
if
[
!
-d
source
]
then
mkdir source
tar
xvf source.tar
-C
source
--strip-components
1
fi
rm
-rf
build
cp
-r
source
build
elif
[
-n
"
$GIT
"
]
then
if
[
!
-d
source
]
then
git clone
--recursive
"
$GIT
"
source
fi
pushd source
>
/dev/null
git pull
git submodule
sync
git submodule update
--init
--recursive
popd
>
/dev/null
rm
-rf
build
cp
-r
source
build
fi
fi
pushd
build
>
/dev/null
git pull
git submodule
sync
git submodule update
--init
--recursive
popd
>
/dev/null
;;
;;
unfetch
)
unfetch
)
rm
-rfv
build
rm
-rfv
build
source
if
[
-n
"
$TAR
"
]
then
rm
-f
source.tar
fi
;;
;;
version
)
version
)
pushd
build
>
/dev/null
pushd
build
>
/dev/null
...
...
This diff is collapsed.
Click to expand it.
recipes/lua/recipe.sh
0 → 100644
+
33
−
0
View file @
f57cd8df
VERSION
=
5.3.1
TAR
=
http://www.lua.org/ftp/lua-
$VERSION
.tar.gz
function
recipe_version
{
echo
"
$VERSION
"
return
1
}
function
recipe_update
{
echo
"skipping update"
return
1
}
function
recipe_build
{
make generic
CC
=
"
$CC
-std=gnu99"
return
1
}
function
recipe_test
{
echo
"skipping test"
return
1
}
function
recipe_clean
{
make clean
return
1
}
function
recipe_stage
{
mkdir
-pv
"
$1
/bin"
cp
src/lua src/luac
"
$1
/bin"
return
1
}
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