Commit c4e2390c authored by Ed Reel's avatar Ed Reel

Fix install message output and add ghc to last_packages

parent 44bf1bbd
......@@ -588,6 +588,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"
......@@ -677,7 +680,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)
......@@ -747,9 +750,6 @@ def install
end
unless @pkg.is_fake?
# install filelist, dlist and binary files
puts "Installing..."
# perform pre-install process
pre_install dest_dir
......
# Defines common constants used in different parts of crew
CREW_VERSION = '1.3.7'
CREW_VERSION = '1.3.8'
ARCH = `uname -m`.strip
ARCH_LIB = if ARCH == 'x86_64' then 'lib64' else 'lib' end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment