mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt firefox to updater-firefox-147.0.2 * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust firefox deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Change all sommelier deps to => :logical deps Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix circular dependencies of docbook_xml and docbook_xml412. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup docbook circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix elogind, ffmpeg circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Cleanup more circular deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Mark packages from successful builds as automatically buildable. * updater-firefox-147.0.2: Package File Update Run on linux/386 container. * Add filelists and updated packages. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix gstreamer deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Handle missing dlist, update pipewire filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add rsu_client filelist Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Suggested changes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust elogind deps. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust docbook heredocs. Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
26 lines
889 B
Ruby
26 lines
889 B
Ruby
require 'buildsystems/cmake'
|
|
|
|
class Libxslt < CMake
|
|
description 'Libxslt is the XSLT C library developed for the GNOME project.'
|
|
homepage 'https://gitlab.gnome.org/GNOME/libxslt/-/wikis/home'
|
|
version "1.1.45-#{CREW_ICU_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://gitlab.gnome.org/GNOME/libxslt.git'
|
|
git_hashtag "v#{version.split('-').first}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '0a06d2e6fc1730baacfb7740d55b40fb94626e37bf2e2a9adb3e6973aea83113',
|
|
armv7l: '0a06d2e6fc1730baacfb7740d55b40fb94626e37bf2e2a9adb3e6973aea83113',
|
|
i686: '087b6af2a48540a3c9eded8ad35a81867dfe57ae78bd894841a3d4cec08e9a09',
|
|
x86_64: '9aaf57c2d0dd896191f4f923aa1a1753ae84cdfeacc55e392d6fbd18c7b20dd7'
|
|
})
|
|
|
|
depends_on 'docbook_xml' => :build
|
|
depends_on 'glibc' # R
|
|
depends_on 'libxml2' # R
|
|
|
|
cmake_options '-DLIBXSLT_WITH_PYTHON=OFF'
|
|
end
|