mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
73 lines
2.9 KiB
Ruby
73 lines
2.9 KiB
Ruby
require 'package'
|
|
|
|
class Man_db < Package
|
|
description 'mandb is used to initialize or manually update index database caches that are usually maintained by man.'
|
|
homepage 'https://man-db.nongnu.org/'
|
|
version '2.13.1-2'
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url "https://download.savannah.gnu.org/releases/man-db/man-db-#{version.split('-').first}.tar.xz"
|
|
source_sha256 '8afebb6f7eb6bb8542929458841f5c7e6f240e30c86358c1fbcefbea076c87d9'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5f9759c170629554b82425a440984bee6bbf95b00dedd08e7bebfcae8fb00747',
|
|
armv7l: '5f9759c170629554b82425a440984bee6bbf95b00dedd08e7bebfcae8fb00747',
|
|
i686: '4e251b2f85b4270f318d855f4f12e59753daee21f876d0ea186a497e33b51cb1',
|
|
x86_64: 'bd60a033eeb940d61e1a478aeb7617e649565e50251efbda5d327cb824d60d87'
|
|
})
|
|
|
|
no_fhs
|
|
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdbm' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'groff' # L
|
|
depends_on 'libpipeline' # R
|
|
depends_on 'libseccomp' # R
|
|
depends_on 'zlib' # R
|
|
|
|
def self.patch
|
|
system "for f in $(grep -lr '/usr/local' | xargs); do sed -i 's,/usr/local,#{CREW_PREFIX},g' $f; done"
|
|
system "for f in $(grep -lr '/usr/man' | xargs); do sed -i 's,/usr/man,#{CREW_PREFIX}/share/man,g' $f; done"
|
|
system "for f in $(grep -lr '/usr/share/man' | xargs); do sed -i 's,/usr/share/man,#{CREW_PREFIX}/share/man,g' $f; done"
|
|
system "for f in $(grep -lr '/var/cache/man' | xargs); do sed -i 's,/var/cache/man,#{CREW_PREFIX}/cache/man,g' $f; done"
|
|
end
|
|
|
|
def self.build
|
|
# we can't write to /usr/lib/tmpfiles.d
|
|
# we can't create the user 'man'
|
|
# the pager is not at the default location
|
|
year2038 = ARCH == 'x86_64' ? '' : ' --disable-year2038'
|
|
options = CREW_CONFIGURE_OPTIONS + year2038
|
|
system "./configure #{options} \
|
|
--disable-cache-owner \
|
|
--disable-setuid \
|
|
--enable-automatic-create \
|
|
--enable-static \
|
|
--with-bzip2=bzip2 \
|
|
--with-compress=compress \
|
|
--with-lzip=lzip \
|
|
--with-lzma=lzma \
|
|
--without-libiconv-prefix \
|
|
--with-systemdtmpfilesdir=#{CREW_PREFIX}/etc/tmpfiles.d \
|
|
--with-xz=xz \
|
|
--with-zstd=zstd"
|
|
system 'make'
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/cache/man"
|
|
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
|
|
end
|
|
|
|
def self.postinstall
|
|
puts "Starting backgrounded mandb cache rebuild. This will be logged to #{CREW_PREFIX}/var/log/man-db-rebuild.log.".yellow
|
|
puts '(Errors from this can either be ignored or reported upstream to the relevant package maintainers.)'.yellow
|
|
# See https://gitlab.com/man-db/man-db/-/issues/4
|
|
# Also https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1003089
|
|
FileUtils.mkdir_p "#{CREW_PREFIX}/var/log"
|
|
system "MANPATH='' MAN_DISABLE_SECCOMP=1 nice -n 20 mandb -C #{CREW_PREFIX}/etc/man_db.conf -psc &> #{CREW_PREFIX}/var/log/man-db-rebuild.log &", exception: false
|
|
end
|
|
end
|