Files
chromebrew/packages/qrencode.rb
Maximilian Downey Twiss de24923ee8 Add Rubocop CI (#7083)
* Rename IgnoredPatterns to AllowedPatterns.

* Exclude docopt.rb (not our code) from Rubocop

* Disable Style/RedundantReturn

* Disable Style/MutableConstant

* Disable Style/NumericLiterals

* Set Layout/IndentationStyle to spaces

* Temporarily disable various cops.

* Add Rubocop CI via Octocop

* Lint tree with rubocop -A -c .rubocop.yml

Co-authored-by: Satadru Pramanik <satadru@gmail.com>
2022-08-22 13:31:25 -04:00

38 lines
1.5 KiB
Ruby

require 'package'
class Qrencode < Package
description 'Libqrencode is a fast and compact library for encoding data in a QR Code symbol'
homepage 'https://fukuchi.org/works/qrencode/'
version '4.0.2'
license 'LGPL-2'
compatibility 'all'
source_url 'https://fukuchi.org/works/qrencode/qrencode-4.0.2.tar.gz'
source_sha256 'dbabe79c07614625d1f74d8c0ae2ee5358c4e27eab8fd8fe31f9365f821a3b1d'
binary_url({
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/qrencode/4.0.2_armv7l/qrencode-4.0.2-chromeos-armv7l.tar.xz',
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/qrencode/4.0.2_armv7l/qrencode-4.0.2-chromeos-armv7l.tar.xz',
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/qrencode/4.0.2_i686/qrencode-4.0.2-chromeos-i686.tar.xz',
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/qrencode/4.0.2_x86_64/qrencode-4.0.2-chromeos-x86_64.tar.xz'
})
binary_sha256({
aarch64: '1135a62562f8a523968b5affb3fbd32cf1068701de6024ab1d1b612b39065cd3',
armv7l: '1135a62562f8a523968b5affb3fbd32cf1068701de6024ab1d1b612b39065cd3',
i686: 'a71bbdf13f9a57930d3d0064becdaa57613d3e16fe446e40698bc377881c9175',
x86_64: '20d0f46764c934a1d32f114c0488fb9b79a1761dbb757d51a009a2547b3cd682'
})
depends_on 'libpng'
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end