Files
chromebrew/packages/autosetup.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* Add binary_compression value to each package

* Remove binary_url values and arrays

* Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
2024-01-25 11:03:31 -05:00

22 lines
546 B
Ruby

require 'package'
class Autosetup < Package
description 'autosetup is a tool, similar to autoconf, to configure a build system'
homepage 'https://msteveb.github.io/autosetup/'
version '0.7.0'
license 'BSD-2'
compatibility 'all'
source_url 'https://github.com/msteveb/autosetup/archive/v0.7.0.tar.gz'
source_sha256 '473123b3921acc7b623d2d4a6175a058bf685c0ae3676850fb867026d67244cb'
depends_on 'tcl'
def self.build
system 'make'
end
def self.install
system "./autosetup --sysinstall=#{CREW_DEST_PREFIX}"
end
end