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
fd966af0
Commit
fd966af0
authored
Jan 02, 2017
by
Ed Reel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore original openssl_devel package
parent
2d234b51
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
packages/openssl_devel.rb
packages/openssl_devel.rb
+36
-0
No files found.
packages/openssl_devel.rb
0 → 100644
View file @
fd966af0
require
'package'
#Installs JUST the headers to match the chromeos supplied libraries so that you can build things
# that link with openssl. Needs to be kept version-synced with chromeos releases
# Could detect current version and grab one of many different packages, compare to saved
# hashes and support multiple versions if needed
#grumble - package names in crew must conform to ruby variable name restrictions. For instance '-' is disallowed
class
Openssl_devel
<
Package
version
'1.0.2f'
# chromeos wget can't do proper ssl negotiation with this server
# source_url 'https://www.openssl.org/source/old/1.0.2/openssl-1.0.2g.tar.gz'
# so use their ftp server.
source_url
'ftp://ftp.openssl.org/source/old/1.0.2/openssl-1.0.2f.tar.gz'
source_sha1
'2047c592a6e5a42bd37970bdb4a931428110a927'
depends_on
'perl'
def
self
.
build
# only need to run config to get the headers set up right
system
'./config'
end
def
self
.
install
out
=
"
#{
CREW_DEST_DIR
}
/usr/local/include/openssl"
system
"mkdir -p
#{
out
}
"
`ls ./include/openssl`
.
split
(
' '
).
each
do
|
header
|
system
"cp"
,
"./include/openssl/
#{
header
}
"
,
out
end
#system "cp", "./include/openssl/*", "#{out}"
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