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
c0468128
Commit
c0468128
authored
7 years ago
by
Ed Reel
Committed by
GitHub
7 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1282 from cstrouse/add-wget
Add wget package
parents
35321082
4f6fda28
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
0 deletions
+29
-0
packages/wget.rb
packages/wget.rb
+29
-0
No files found.
packages/wget.rb
0 → 100644
View file @
c0468128
require
'package'
class
Wget
<
Package
description
'GNU Wget is a free software package for retrieving files using HTTP, HTTPS, FTP and FTPS.'
homepage
'https://www.gnu.org/software/wget/'
version
'1.19'
source_url
'https://ftp.gnu.org/gnu/wget/wget-1.19.tar.xz'
source_sha256
'0f1157bbf4daae19f3e1ddb70c6ccb2067feb834a6aa23c9d9daa7f048606384'
binary_url
({
})
binary_sha256
({
})
depends_on
'buildessential'
=>
:build
depends_on
'gnutls'
def
self
.
build
system
'./configure'
,
"--prefix=
#{
CREW_PREFIX
}
"
,
"--libdir=
#{
CREW_LIB_PREFIX
}
"
,
"--sysconfdir=
#{
CREW_PREFIX
}
/etc"
system
'make'
end
def
self
.
install
system
'make'
,
"DESTDIR=
#{
CREW_DEST_DIR
}
"
,
'install'
end
end
This diff is collapsed.
Click to expand it.
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