Rebuild dehtml — dehtml (#12376)

* Rebuild dehtml

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

* Fix dehtml build.

Signed-off-by: Satadru Pramanik <satadru@gmail.com>

---------

Signed-off-by: Satadru Pramanik <satadru@gmail.com>
Co-authored-by: Zopolis4 <creatorsmithmdt@gmail.com>
Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
Co-authored-by: Satadru Pramanik <satadru@gmail.com>
This commit is contained in:
chromebrew-actions[bot]
2025-08-07 23:01:50 +10:00
committed by GitHub
parent 2cef2d68e4
commit f757c15342

View File

@@ -3,28 +3,27 @@ require 'buildsystems/autotools'
class Dehtml < Autotools
description 'Dehtml removes HTML constructs from documents for indexing, spell checking and so on.'
homepage 'http://www.moria.de/~michael/dehtml/'
version '1.8-1'
license 'GPL-2'
version '1.8'
license 'GPL-2+'
compatibility 'all'
source_url 'http://www.moria.de/~michael/dehtml/dehtml-1.8.tar.gz'
source_url "http://www.moria.de/~michael/dehtml/dehtml-#{version}.tar.gz"
source_sha256 'a00e86643b0aa73861e9d8d619a80370f0f99519d34ce12459fab77f5f6b5bde'
binary_compression 'tar.zst'
binary_sha256({
aarch64: 'bf71a6d20c294963a7dd9ac875d0d4b03df747664de408cf72c958e26d706195',
armv7l: 'bf71a6d20c294963a7dd9ac875d0d4b03df747664de408cf72c958e26d706195',
i686: '2484ea4c57eed480d14ea7f33b2ed75b813adcf92bbaaa43b45acff954f4832e',
x86_64: '02b2bb63225eee9a2eb464fd3f663f9d692e4575d0b83e203a6f54e61446d04d'
aarch64: 'd443a2fbbc3d16fdcefce0e8910bd20a230ecce4aeea3cf4aa6a811cd76c3ed1',
armv7l: 'd443a2fbbc3d16fdcefce0e8910bd20a230ecce4aeea3cf4aa6a811cd76c3ed1',
i686: 'ead0e0cc2d7a9486ccb8d7a0a0f4b19cdb71f3081df2e7d0d8402aa93ef539de',
x86_64: 'ac7002d89ff6d5537cd22b350d7b86c46424b7c8f918533b5d06239490727aae'
})
depends_on 'glibc' # R
autotools_build_relative_dir '.'
# The Makefile.in does not respect DESTDIR, so we override the buildsystem and append the explicit paths here.
def self.build
system "./configure --prefix=#{CREW_DEST_PREFIX}"
system "./configure --prefix=#{CREW_DEST_PREFIX} --mandir=#{CREW_DEST_MAN_PREFIX}"
system 'make'
end
def self.install
system 'make install'
end
end