Files
chromebrew/packages/djvulibre.rb
Maximilian Downey Twiss f6b6cab229 Rename autotools constants to fall in line with the rest of crew (#10442)
* Rename CREW_OPTIONS to CREW_CONFIGURE_OPTIONS

* Rename build_extras and install_extras to configure_build_extras and configure_install_extras
2024-09-09 18:21:58 -05:00

46 lines
1.6 KiB
Ruby

# Adapted from Arch Linux djvulibre PKGBUILD at:
# https://github.com/archlinux/svntogit-packages/raw/packages/djvulibre/trunk/PKGBUILD
require 'package'
class Djvulibre < Package
description 'Suite to create, manipulate and view DjVu déjà vu documents'
homepage 'https://djvu.sourceforge.net/'
@_ver = '3.5.28'
version "#{@_ver}-1"
license 'GPL2'
compatibility 'all'
source_url "https://downloads.sourceforge.net/project/djvu/DjVuLibre/#{@_ver}/djvulibre-#{@_ver}.tar.gz"
source_sha256 'fcd009ea7654fde5a83600eb80757bd3a76998e47d13c66b54c8db849f8f2edc'
binary_compression 'tar.zst'
binary_sha256({
aarch64: '48a4422a5608c30ca64ee39e5def5889b39fb0a8baa21bea2e4a1a71732e4807',
armv7l: '48a4422a5608c30ca64ee39e5def5889b39fb0a8baa21bea2e4a1a71732e4807',
i686: '72dc698bb4e83cfa4b745005daea4ab7f877477e307462df26940b0404bb851c',
x86_64: '2d7e552fb69f2f0065b149be8046aaed7e6db3094b1f827fdd24454c2d5ddc9a'
})
depends_on 'libjpeg_turbo'
depends_on 'libtiff'
depends_on 'librsvg' => :build
depends_on 'gcc_lib' # R
depends_on 'glibc' # R
def self.build
system "./configure #{CREW_CONFIGURE_OPTIONS} \
--disable-desktopfiles"
system 'make'
end
def self.install
system "make DESTDIR=#{CREW_DEST_DIR} install"
@desktopfiles = %w[22 32 48 64]
@desktopfiles.each do |item|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/share/icons/hicolor/#{item}x#{item}/mimetypes"
FileUtils.install "desktopfiles/prebuilt-hi#{item}-djvu.png",
"#{CREW_DEST_PREFIX}/share/icons/hicolor/#{item}x#{item}/mimetypes/image-vnd.djvu.mime.png", mode: 0o644
end
end
end