mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
crew prepare_package: sort filelist, use CREW_DEST_MAN_PREFIX, CREW_LOCAL_MANIFEST_PATH writable check (#8274)
* prepare_package: sort filelist, use CREW_DEST_MAN_PREFIX * bump version * write filelist to CREW_LOCAL_MANIFEST_PATH if writable * Fix spacing, add abort condition for CREW_LOCAL_MANIFEST_PATH not being writable during builds. * change default container linux headers to 5.10 * update logic, add updated figlet * add fixed wol package
This commit is contained in:
committed by
GitHub
parent
9d0c867509
commit
913f923bc1
@@ -2,28 +2,30 @@ require 'package'
|
||||
|
||||
class Wol < Package
|
||||
description 'Wake up hardware that is Magic Packet compliant'
|
||||
homepage 'http://ahh.sourceforge.net/wol/'
|
||||
version '0.7.1'
|
||||
homepage 'https://ahh.sourceforge.net/wol/'
|
||||
version '0.7.1-1'
|
||||
license 'GPL-2+'
|
||||
compatibility 'all'
|
||||
source_url 'https://downloads.sourceforge.net/ahh/wol-0.7.1.tar.gz'
|
||||
source_sha256 'e0086c9b9811df2bdf763ec9016dfb1bcb7dba9fa6d7858725b0929069a12622'
|
||||
|
||||
binary_url({
|
||||
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1_armv7l/wol-0.7.1-chromeos-armv7l.tar.xz',
|
||||
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1_armv7l/wol-0.7.1-chromeos-armv7l.tar.xz',
|
||||
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1_i686/wol-0.7.1-chromeos-i686.tar.xz',
|
||||
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1_x86_64/wol-0.7.1-chromeos-x86_64.tar.xz'
|
||||
aarch64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1-1_armv7l/wol-0.7.1-1-chromeos-armv7l.tar.zst',
|
||||
armv7l: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1-1_armv7l/wol-0.7.1-1-chromeos-armv7l.tar.zst',
|
||||
i686: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1-1_i686/wol-0.7.1-1-chromeos-i686.tar.zst',
|
||||
x86_64: 'https://gitlab.com/api/v4/projects/26210301/packages/generic/wol/0.7.1-1_x86_64/wol-0.7.1-1-chromeos-x86_64.tar.zst'
|
||||
})
|
||||
binary_sha256({
|
||||
aarch64: '83abf28069852e88d080740c682be692007134532e9f045173cf10def41bc26d',
|
||||
armv7l: '83abf28069852e88d080740c682be692007134532e9f045173cf10def41bc26d',
|
||||
i686: 'e0c1b4a267d50208fa0e1979effbb425fa14aeffe1a49029e0f45967cedc3e7f',
|
||||
x86_64: '27cf6ed4e02b068ffc59b650d165b575a921403c64fe74be8875860c96357c13'
|
||||
aarch64: 'b07eb72d647bbb6907b62196ea0d88c23d7564bc0335fd32f3bb1b2c9f1eab6a',
|
||||
armv7l: 'b07eb72d647bbb6907b62196ea0d88c23d7564bc0335fd32f3bb1b2c9f1eab6a',
|
||||
i686: '09bdc20009def407f64d45814deb7415381fd1f6b3ccebd83e67dabd3f809dbc',
|
||||
x86_64: '01b2449b8062b3d188d9caadbc327894f24af04942409e5a620eae28e20d106d'
|
||||
})
|
||||
|
||||
depends_on 'glibc' # R
|
||||
|
||||
def self.build
|
||||
system './configure', "--prefix=#{CREW_PREFIX}", "--mandir=#{CREW_MAN_PREFIX}"
|
||||
system "./configure #{CREW_OPTIONS}"
|
||||
system 'make'
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user