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
754618f8
Commit
754618f8
authored
Jan 05, 2017
by
Kazushi (Jam) Marukawa
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed to use /etc/ssl as is
parent
87d5dd3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
packages/openssl.rb
packages/openssl.rb
+3
-4
No files found.
packages/openssl.rb
View file @
754618f8
...
...
@@ -9,16 +9,15 @@ class Openssl < Package
depends_on
'perl'
def
self
.
build
system
"./config"
,
"--prefix=/usr/local"
,
"shared"
,
"zlib-dynamic"
system
"./config"
,
"--prefix=/usr/local"
,
"--openssldir=/etc/ssl"
,
"shared"
,
"zlib-dynamic"
system
"make"
end
def
self
.
install
system
"make"
,
"INSTALL_PREFIX=
#{
CREW_DEST_DIR
}
"
,
"install"
# make sure cert.pem exists
system
"wget"
,
"https://curl.haxx.se/ca/cacert.pem"
,
"-O"
,
"
#{
CREW_DEST_DIR
}
/usr/local/ssl/cert.pem"
# remove all files pretended to install /etc/ssl (use system's /etc/ssl as is)
system
"rm"
,
"-rf"
,
"
#{
CREW_DEST_DIR
}
/etc"
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