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
c3ca1bd8
Commit
c3ca1bd8
authored
Jul 08, 2016
by
Ricardo Echavarria
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add erlang OTP 19 and Elixir 1.3.1 packages
parent
c6010b13
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
0 deletions
+35
-0
packages/elixir.rb
packages/elixir.rb
+17
-0
packages/erlang.rb
packages/erlang.rb
+18
-0
No files found.
packages/elixir.rb
0 → 100644
View file @
c3ca1bd8
require
'package'
class
Elixir
<
Package
version
'1.3.1'
depends_on
'erlang'
source_url
'https://github.com/elixir-lang/elixir/archive/v1.3.1.tar.gz'
source_sha1
'29dc1b4da5e051ad71ad84b6886d7c184e4b9add'
def
self
.
build
system
'make clean test'
end
def
self
.
install
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
end
end
packages/erlang.rb
0 → 100644
View file @
c3ca1bd8
require
'package'
class
Erlang
<
Package
version
'19.0'
source_url
'http://www.erlang.org/download/otp_src_19.0.tar.gz'
source_sha1
'3be958b529de4be19d77eb77f587a76210b43bfd'
def
self
.
build
system
'export ERL_OTP=`pwd`'
system
'./configure --prefix=/usr/local'
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