Files
chromebrew/packages/libxslt.rb
Maximilian Downey Twiss 0905d6000b Upgrade libgpg_error, rgb, libraw1394, multitail, quakespasm (#10259)
* libgpgerror 1.47 -> libgpg_error 1.50

* rgb 1.0.6-1 -> 1.1.0

* libraw1394 2.0.5-1 -> 2.1.2

* multitail 6.4.2-1 -> 7.1.3

* quakespasm 0.93.1-1 -> 0.96.3
2024-08-06 10:38:13 -04:00

39 lines
1.2 KiB
Ruby

require 'package'
class Libxslt < Package
description 'Libxslt is the XSLT C library developed for the GNOME project.'
homepage 'https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home'
version '1.1.34'
license 'MIT'
compatibility 'all'
source_url 'http://xmlsoft.org/sources/libxslt-1.1.34.tar.gz'
source_sha256 '98b1bd46d6792925ad2dfe9a87452ea2adebf69dcb9919ffd55bf926a7f93f7f'
binary_compression 'tar.xz'
binary_sha256({
aarch64: 'df33590a8edfc86f29fada7d5b44e5914651259015e8df726603a2ffdc23bd42',
armv7l: 'df33590a8edfc86f29fada7d5b44e5914651259015e8df726603a2ffdc23bd42',
i686: 'd201b063ce46e40d354c3e89472aafd54fa524bd57e70b6ab03219e4f165bd93',
x86_64: '2ead1e30cb028f2f299056f8eea5bfb318f7346c6a65cfa4a891672560ed26bc'
})
depends_on 'docbook_xsl' => :build
depends_on 'glibc' # R
depends_on 'libgcrypt' # R
depends_on 'libgpg_error' # R
depends_on 'libxml2' # R
depends_on 'py3_libxml2' => :build
def self.build
system './configure',
"--prefix=#{CREW_PREFIX}",
"--libdir=#{CREW_LIB_PREFIX}",
'--disable-static'
system 'make'
end
def self.install
system 'make', "DESTDIR=#{CREW_DEST_DIR}", 'install'
end
end