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
f6c4c29a
Commit
f6c4c29a
authored
7 years ago
by
Thomas Gatzweiler
Browse files
Options
Downloads
Patches
Plain Diff
Add recipe for ncurses
parent
5a746d52
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
recipes/ncurses/01-config-sub.patch
+21
-0
21 additions, 0 deletions
recipes/ncurses/01-config-sub.patch
recipes/ncurses/recipe.sh
+36
-0
36 additions, 0 deletions
recipes/ncurses/recipe.sh
with
57 additions
and
0 deletions
recipes/ncurses/01-config-sub.patch
0 → 100644
+
21
−
0
View file @
f6c4c29a
diff -ru source/config.sub source-new/config.sub
--- source/config.sub 2015-05-02 13:52:04.000000000 +0200
+++ source-new/config.sub 2017-08-13 13:12:16.485670615 +0200
@@ -2,7 +2,7 @@
# Configuration validation subroutine script.
# Copyright 1992-2015 Free Software Foundation, Inc.
-timestamp='2015-03-08'
+timestamp='2017-08-13'
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
@@ -1371,7 +1371,7 @@
# The portable systems comes first.
# Each alternative MUST END IN A *, to match a version number.
# -sysv* is not here because it comes later, after sysvr4.
- -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \
+ -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* | -redox* \
| -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\
| -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \
| -sym* | -kopensolaris* | -plan9* \
This diff is collapsed.
Click to expand it.
recipes/ncurses/recipe.sh
0 → 100644
+
36
−
0
View file @
f6c4c29a
VERSION
=
6.0
TAR
=
http://ftp.gnu.org/gnu/ncurses/ncurses-
$VERSION
.tar.gz
function
recipe_version
{
echo
"
$VERSION
"
skip
=
1
}
function
recipe_update
{
echo
"skipping update"
skip
=
1
}
function
recipe_build
{
./configure
--host
=
${
HOST
}
--prefix
=
""
make
skip
=
1
}
function
recipe_test
{
echo
"skipping test"
skip
=
1
}
function
recipe_clean
{
make clean
skip
=
1
}
function
recipe_stage
{
dest
=
"
$(
realpath
$1
)
"
make
DESTDIR
=
"
$dest
"
install
rm
-rf
"
$1
"
/bin
rm
-rf
"
$1
"
/share/
{
doc,info,man
}
skip
=
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