mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
added clamav package
This commit is contained in:
16
packages/clamav.rb
Normal file
16
packages/clamav.rb
Normal file
@@ -0,0 +1,16 @@
|
||||
require 'package'
|
||||
|
||||
class Clamav < Package
|
||||
version '0.99.2'
|
||||
source_url 'https://www.clamav.net/downloads/production/clamav-0.99.2.tar.gz'
|
||||
source_sha1 'c1a47411834d8527f7b40727aebee63f01d488af'
|
||||
|
||||
def self.build
|
||||
system "./configure"
|
||||
system "make"
|
||||
end
|
||||
|
||||
def self.install
|
||||
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user