mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
Add libewf package (#3569)
Libewf is a library to access the Expert Witness Compression Format (EWF). This is a prerequsite for bulk_extractor. Tested on ARM.
This commit is contained in:
25
packages/libewf.rb
Normal file
25
packages/libewf.rb
Normal file
@@ -0,0 +1,25 @@
|
||||
require 'package'
|
||||
|
||||
class Libewf < Package
|
||||
description 'Libewf is a library to access the Expert Witness Compression Format (EWF)'
|
||||
homepage 'https://github.com/libyal/libewf'
|
||||
version '20140608'
|
||||
source_url 'https://github.com/libyal/libewf/releases/download/20171104/libewf-experimental-20171104.tar.gz'
|
||||
source_sha256 'cf36d3baf3a96dbe566fde55ae7d79fc2e7b998806ab13e0f69915799f19e040'
|
||||
|
||||
binary_url ({
|
||||
})
|
||||
binary_sha256 ({
|
||||
})
|
||||
|
||||
def self.build
|
||||
system './configure',
|
||||
"--prefix=#{CREW_PREFIX}",
|
||||
"--libdir=#{CREW_PREFIX}"
|
||||
system 'make'
|
||||
end
|
||||
|
||||
def self.install
|
||||
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user