Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
chromebrew
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
chromebrew
Commits
8b407534
Commit
8b407534
authored
Jul 09, 2015
by
system_user
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added recipes for flex and bc
parent
39e54e2f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
36 additions
and
0 deletions
+36
-0
packages/bc.rb
packages/bc.rb
+18
-0
packages/flex.rb
packages/flex.rb
+18
-0
No files found.
packages/bc.rb
0 → 100644
View file @
8b407534
require
'package'
class
Bc
<
Package
version
'1.06'
source_url
'http://ftp.gnu.org/gnu/bc/bc-1.06.tar.gz'
source_sha1
'c8f258a7355b40a485007c40865480349c157292'
depends_on
'flex'
def
self
.
build
system
"./configure --libdir=/usr/local/lib64/"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
packages/flex.rb
0 → 100644
View file @
8b407534
require
'package'
class
Flex
<
Package
version
'2.5.39'
source_url
'http://fossies.org/linux/misc/flex-2.5.39.tar.gz'
source_sha1
'40866373afd3ab88a7f7fe26c9b27b035aa1f2a9'
depends_on
'm4'
def
self
.
build
system
"./configure --libdir=/usr/local/lib64/ CC=
\"
gcc -m64
\"
CFLAGS=
\"
-fPIC
\"
"
system
"make"
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment