mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* 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)
28 lines
793 B
Ruby
28 lines
793 B
Ruby
require 'package'
|
|
|
|
class Ddgr < Package
|
|
description 'DuckDuckGo from the terminal'
|
|
homepage 'https://github.com/jarun/ddgr'
|
|
version '2.1'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/jarun/ddgr.git'
|
|
git_hashtag "v#{version}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '77e8bb3cb62004313c987664af947219cdbaa40bb95d643960cf5138db9a9d9a',
|
|
armv7l: '77e8bb3cb62004313c987664af947219cdbaa40bb95d643960cf5138db9a9d9a',
|
|
i686: '843b29f4c5e8d526b563505f391a420146780dc3760def2179b1f4843bdc7caa',
|
|
x86_64: '3ad3923836b3bfe7a97d81c827f6953b74dc43657331f5f91fdec7159d452815'
|
|
})
|
|
|
|
def self.build
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
system 'make', "PREFIX=#{CREW_PREFIX}", "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
end
|