mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -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)
40 lines
1.3 KiB
Ruby
40 lines
1.3 KiB
Ruby
# Adapted from Arch Linux go-md2man PKGBUILD at:
|
|
# https://github.com/archlinux/svntogit-community/raw/packages/go-md2man/trunk/PKGBUILD
|
|
|
|
require 'package'
|
|
|
|
class Go_md2man < Package
|
|
description 'A markdown to manpage generator'
|
|
homepage 'https://github.com/cpuguy83/go-md2man'
|
|
version '2.0.2'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/cpuguy83/go-md2man/archive/v2.0.2.tar.gz'
|
|
source_sha256 '2f52e37101ea2734b02f2b54a53c74305b95b3a9a27792fdac962b5354aa3e4a'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8751befe1a9d1dbc4c69cb44a5fc4a91c8ef6b50ad8393e9b0f62acf101e56ae',
|
|
armv7l: '8751befe1a9d1dbc4c69cb44a5fc4a91c8ef6b50ad8393e9b0f62acf101e56ae',
|
|
i686: '089a75730ade35a9e5fdbbf0dce36b00d8561f8110ed39f99d4537deaf1e7f63',
|
|
x86_64: 'd498f230de0b11cffdb3399d38de32ced680350477baa14bbccea07316aff083'
|
|
})
|
|
|
|
depends_on 'go' => :build
|
|
depends_on 'glibc' # R
|
|
|
|
def self.build
|
|
system 'make'
|
|
system 'bin/go-md2man -in=go-md2man.1.md -out=go-md2man.1'
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p %W[
|
|
#{CREW_DEST_PREFIX}/bin
|
|
#{CREW_DEST_MAN_PREFIX}/man1
|
|
]
|
|
FileUtils.install 'bin/go-md2man', "#{CREW_DEST_PREFIX}/bin/go-md2man", mode: 0o755
|
|
FileUtils.install 'go-md2man.1', "#{CREW_DEST_MAN_PREFIX}/man1/go-md2man.1", mode: 0o644
|
|
end
|
|
end
|