Files
chromebrew/packages/libmnl.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

31 lines
992 B
Ruby

require 'package'
class Libmnl < Package
description 'libmnl is a minimalistic user-space library oriented to Netlink developers.'
homepage 'https://www.netfilter.org/projects/libmnl/'
version '1.0.5'
license 'LGPL-2.1'
compatibility 'all'
source_url 'https://www.netfilter.org/projects/libmnl/files/libmnl-1.0.5.tar.bz2'
source_sha256 '274b9b919ef3152bfb3da3a13c950dd60d6e2bcd54230ffeca298d03b40d0525'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '85718120df283f822eeadce36b6db63f972ce349f09f1ec67dd15e0d3c9212ec',
armv7l: '85718120df283f822eeadce36b6db63f972ce349f09f1ec67dd15e0d3c9212ec',
i686: '248da767b3daea5332b311c12a4e092ffbd0615c38331bc1416809042e4190c4',
x86_64: 'a791591c92ee92cb3d75ccb789e71f131395515004638eebb33664eb9ddb7e0a'
})
depends_on 'glibc' # R
def self.build
system "./configure #{CREW_OPTIONS}"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end