trousers — trousers: 0.3.15-2 → 0.3.15 (#13648)

* rebuild trousers

* trousers: Package File Update Run on linux/386 container.

* trousers: Package File Update Run on linux/amd64 container.

* trousers: Package File Update Run on linux/arm/v7 container.

---------

Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
This commit is contained in:
chromebrew-actions[bot]
2025-11-27 01:10:00 -06:00
committed by GitHub
parent 539fc6a849
commit 0fd9303e1a
4 changed files with 14 additions and 29 deletions

View File

@@ -1,4 +1,4 @@
# Total size: 997639
# Total size: 1181818
/usr/local/etc/tcsd.conf
/usr/local/include/trousers/trousers.h
/usr/local/include/trousers/tss.h

View File

@@ -1,4 +1,4 @@
# Total size: 1094873
# Total size: 1386672
/usr/local/etc/tcsd.conf
/usr/local/include/trousers/trousers.h
/usr/local/include/trousers/tss.h

View File

@@ -1,4 +1,4 @@
# Total size: 1215657
# Total size: 1237736
/usr/local/etc/tcsd.conf
/usr/local/include/trousers/trousers.h
/usr/local/include/trousers/tss.h

View File

@@ -1,39 +1,24 @@
require 'package'
require 'buildsystems/autotools'
class Trousers < Package
class Trousers < Autotools
description 'The open-source TCG Software Stack.'
homepage 'https://trousers.sourceforge.net/'
@_ver = '0.3.15'
version "#{@_ver}-2"
license 'CPL-1.0 and GPL-2'
version '0.3.15'
license 'BSD-3'
compatibility 'all'
source_url "https://downloads.sourceforge.net/project/trousers/trousers/#{@_ver}/trousers-#{@_ver}.tar.gz"
source_sha256 '1e5be93e518372acf1d92d2f567d01a46fdb0b730487e544e6fb896c59cac77f'
source_url 'https://git.code.sf.net/p/trousers/trousers.git'
git_hashtag "TROUSERS_#{version.tr('.', '_')}"
binary_compression 'tar.zst'
binary_sha256({
aarch64: '17010e0e4cdc72fb91eebab4a8e9b549af1f53d7dd46ddcb4c080cd83bfb6082',
armv7l: '17010e0e4cdc72fb91eebab4a8e9b549af1f53d7dd46ddcb4c080cd83bfb6082',
i686: 'cc723134d4817400e656861b72adb6c9ec51df428cc7d798463b8c3a94f3f52f',
x86_64: '195bca093e6085636b522970c9244054fec6b0474ab717ac3106bef2577240d1'
aarch64: '9a4f8c30008de43e79abb471c0d97c13dfa30ca0a9cc8a53a33729a5dd5f4b3b',
armv7l: '9a4f8c30008de43e79abb471c0d97c13dfa30ca0a9cc8a53a33729a5dd5f4b3b',
i686: '58e57d31366d315f474d32e4949a53b289a565a000406ecbd575cac513d60089',
x86_64: '40a49b1f6ef81f491f4c36accf88c701abc0cbe7f4e54d7d3ac1ae6a8250b494'
})
depends_on 'glibc' # R
depends_on 'openssl' # R
def self.build
system './bootstrap.sh'
system "./configure \
#{CREW_CONFIGURE_OPTIONS} \
--with-gui=none"
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
def self.check
system 'make', 'check'
end
autotools_configure_options '--with-gui=none'
end