mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
17 lines
333 B
Ruby
17 lines
333 B
Ruby
require 'package'
|
|
|
|
class Filecmd < Package
|
|
version '5.29'
|
|
source_url 'ftp://ftp.astron.com/pub/file/file-5.29.tar.gz'
|
|
source_sha1 '8d360aeed901e3e4f4d4a865696ac1e29efdfcca'
|
|
|
|
def self.build
|
|
system "./configure"
|
|
system "make"
|
|
end
|
|
|
|
def self.install
|
|
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
|
end
|
|
end
|