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
cc76ab55
Commit
cc76ab55
authored
Jul 29, 2016
by
system_user
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'node-updates' of
https://github.com/thedamian/chromebrew
into node-updates
parents
32a9935f
2f75360c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
25 deletions
+10
-25
packages/python27.rb
packages/python27.rb
+0
-20
packages/readline.rb
packages/readline.rb
+10
-5
No files found.
packages/python27.rb
deleted
100644 → 0
View file @
32a9935f
require
'package'
class
Python27
<
Package
version
'2.7.12'
source_url
'https://www.python.org/ftp/python/2.7.12/Python-2.7.12.tar.xz'
# software source tarball url
source_sha1
'05360b8ade117b35e266b2004a7f1f11250c6dcd'
# source tarball sha1 sum
depends_on
'bz2'
depends_on
'ncurses'
depends_on
'openssl_devel'
def
self
.
build
# self.build contains commands needed to build the software from source
system
"./configure --prefix=/usr/local CPPFLAGS=
\"
-I/usr/local/include -I/usr/local/include/ncurses
\"
LDFLAGS=
\"
-L/usr/local/lib
\"
CFLAGS=
\"
-fPIC
\"
"
system
"make"
# ordered chronologically
end
def
self
.
install
# self.install contains commands needed to install the software on the target system
system
"make"
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
"install"
# remember to include DESTDIR set to CREW_DEST_DIR - needed to keep track of changes made to system
end
end
packages/readline.rb
View file @
cc76ab55
require
'package'
class
Readline
<
Package
version
'6.3'
source_url
'http://ftp.gnu.org/gnu/readline/readline-6.3.tar.gz'
source_sha1
'017b92dc7fd4e636a2b5c9265a77ccc05798c9e1'
version
'6.2'
depends_on
'buildessential'
binary_url
({
x86_64:
"https://dl.dropboxusercontent.com/s/v8xva6e4u3tvkaw/readline-6.2-chromeos-x86_64.tar.gz?token_hash=AAHOv1kLiv7xzDkYEZCSB_3ShK0n_7B4m2dNGHPnn2fZIg&dl=1"
})
binary_sha1
({
x86_64:
'621c2538b452be33cca507110ccfd4144c61edd2'
})
depends_on
'buildessential'
#until binary for i686 provided
def
self
.
build
system
"
CC='gcc'
./configure"
system
"./configure"
system
"make"
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