Files
chromebrew/packages/popt.rb
Maximilian Downey Twiss f6dc1d8d4e Derive binary_url in package.rb (#7082)
* 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)
2024-01-25 11:03:31 -05:00

36 lines
1.1 KiB
Ruby

require 'package'
class Popt < Package
description 'Library for parsing command line options'
homepage 'https://directory.fsf.org/wiki/Popt'
version '1.18-7182e46-1'
license 'MIT'
compatibility 'all'
source_url 'https://github.com/rpm-software-management/popt.git'
git_hashtag '7182e4618ad5a0186145fc2aa4a98c2229afdfa8'
binary_compression 'tar.xz'
binary_sha256({
aarch64: '9cefdde6c7c465b26348751ddd4d90c21483e31771237534a583fdc95ade39b5',
armv7l: '9cefdde6c7c465b26348751ddd4d90c21483e31771237534a583fdc95ade39b5',
i686: '8cbf20d99228e07d40c79f580f3d6f8ba84f9a402acd93203ace8b8248d8037e',
x86_64: 'a9c888f6b22b88eb5635e17df8c3b2eab6e91539e1a58696336722b0530c5eda'
})
depends_on 'glibc' # R
depends_on 'gcc_lib' unless ARCH == 'x86_64' # R
no_patchelf
no_zstd
def self.build
system '[ -x configure ] || NOCONFIGURE=1 ./autogen.sh'
system "./configure #{CREW_OPTIONS} \
--disable-maintainer-mode"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end