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
6b1487dc
Commit
6b1487dc
authored
Jan 04, 2017
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove openssl package
parent
dba38a53
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
21 deletions
+0
-21
packages/openssl.rb
packages/openssl.rb
+0
-21
No files found.
packages/openssl.rb
deleted
100644 → 0
View file @
dba38a53
require
'package'
class
Openssl
<
Package
version
'1.0.2j'
source_url
'ftp://ftp.openssl.org/source/openssl-1.0.2j.tar.gz'
# software source tarball url
source_sha1
'bdfbdb416942f666865fa48fe13c2d0e588df54f'
# source tarball sha1 sum
def
self
.
build
# self.build contains commands needed to build the software from source
system
'./config --prefix=/usr/local'
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
system
'cd /usr/local/ssl && \ # make sure cert.pem exists
wget http://curl.haxx.se/ca/cacert.pem && \
mv cacert.pem cert.pem'
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