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
Łukasz Nowak
chromebrew
Commits
ab244a9a
Commit
ab244a9a
authored
Jun 10, 2020
by
Casey Strouse
Committed by
GitHub
Jun 10, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4115 from uberhacker/update-crew-command
Fix install message output and add ghc to last_packages
parents
297bd5b8
cae4e83b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
crew
crew
+4
-4
lib/const.rb
lib/const.rb
+1
-1
No files found.
crew
View file @
ab244a9a
...
...
@@ -646,6 +646,9 @@ end
def
install_package
(
pkgdir
)
Dir
.
chdir
pkgdir
do
#
install
filelist
,
dlist
and
binary
files
puts
"Performing install..."
FileUtils
.
mv
'dlist'
,
CREW_CONFIG_PATH
+
"meta/#{@pkg.name}.directorylist"
FileUtils
.
mv
'filelist'
,
CREW_CONFIG_PATH
+
"meta/#{@pkg.name}.filelist"
...
...
@@ -735,7 +738,7 @@ def resolve_dependencies
i = 0
last_deps = []
last_packages = ["curl", "mandb", "gtk3", "sommelier"]
last_packages = ["curl", "
ghc", "
mandb", "gtk3", "sommelier"]
@dependencies.each do |dep|
if last_packages.include?(dep)
@dependencies.delete_at(i)
...
...
@@ -805,9 +808,6 @@ def install
end
unless @pkg.is_fake?
# install filelist, dlist and binary files
puts "Installing..."
# perform pre-install process
pre_install dest_dir
...
...
lib/const.rb
View file @
ab244a9a
# Defines common constants used in different parts of crew
CREW_VERSION
=
'1.4.
1
'
CREW_VERSION
=
'1.4.
2
'
ARCH
=
`uname -m`
.
strip
ARCH_LIB
=
if
ARCH
==
'x86_64'
then
'lib64'
else
'lib'
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