mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* move zed to rust build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rust buildsystem Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add cargo_about Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Updating package files for linux/386 to branch zed. * Adjust ruby buildsystem Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add solargraph dep to zed Signed-off-by: Satadru Pramanik <satadru@gmail.com> * adjust rust buildsystem Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rust flags. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust zed and build scripts Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust zed build... Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust rust build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Build on linux/amd64 to branch zed. * Updating package files for linux/386 to branch zed. * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * reorder deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust zed build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * zed: Package File Update Run on linux/386 container. * Add back png files to build Signed-off-by: Satadru Pramanik <satadru@gmail.com> * zed: Package File Update Run on linux/386 container. * Adjust zed package file. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * zed: Build Run on linux/amd64. * zed: Package File Update Run on linux/386 container. --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: Ed Reel <edreel@gmail.com>
61 lines
1.9 KiB
Ruby
61 lines
1.9 KiB
Ruby
require 'fileutils'
|
|
require_relative '../package'
|
|
require_relative '../require_gem'
|
|
require_relative '../report_buildsystem_methods'
|
|
|
|
class Autotools < Package
|
|
boolean_property :autotools_make_j1
|
|
property :autotools_build_relative_dir, :autotools_configure_options, :autotools_pre_configure_options, :autotools_build_extras, :autotools_install_extras
|
|
|
|
def self.build
|
|
@autotools_build_relative_dir ||= '.'
|
|
extend ReportBuildsystemMethods
|
|
|
|
print_buildsystem_methods
|
|
|
|
Dir.chdir(@autotools_build_relative_dir) do
|
|
unless File.file?('Makefile') && CREW_CACHE_BUILD
|
|
# Run autoreconf if necessary
|
|
unless File.executable? './configure'
|
|
if File.executable? './autogen.sh'
|
|
system 'NOCONFIGURE=1 ./autogen.sh --no-configure || NOCONFIGURE=1 ./autogen.sh'
|
|
elsif File.executable? './bootstrap'
|
|
system 'NOCONFIGURE=1 ./bootstrap --no-configure || NOCONFIGURE=1 ./bootstrap'
|
|
else
|
|
system 'autoreconf -fiv'
|
|
end
|
|
end
|
|
abort 'configure script not found!'.lightred unless File.file?('configure')
|
|
FileUtils.chmod('+x', 'configure')
|
|
system 'filefix', exception: false unless @no_filefix
|
|
system "#{@autotools_pre_configure_options} ./configure #{CREW_CONFIGURE_OPTIONS} #{@autotools_configure_options}"
|
|
end
|
|
|
|
# Add "-j#" argument to "make" at compile-time, if necessary.
|
|
if @autotools_make_j1
|
|
system 'make', '-j1'
|
|
else
|
|
system 'make', '-j', CREW_NPROC
|
|
end
|
|
|
|
@autotools_build_extras&.call
|
|
end
|
|
end
|
|
|
|
def self.install
|
|
Dir.chdir(@autotools_build_relative_dir) do
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
@autotools_install_extras&.call
|
|
end
|
|
end
|
|
|
|
def self.check
|
|
return unless @run_tests
|
|
|
|
Dir.chdir(@autotools_build_relative_dir) do
|
|
puts 'Testing with make check.'.orange
|
|
system 'make', 'check'
|
|
end
|
|
end
|
|
end
|