require 'buildsystems/meson' Package.load_package("#{__dir__}/libxml2.rb") class Py3_libxml2 < Meson description 'Libxml2-python provides access to libxml2 and libxslt in Python.' homepage 'https://gitlab.gnome.org/GNOME/libxml2/' version "#{Libxml2.version}-#{CREW_PY_VER}" license 'MIT' compatibility 'all' source_url Libxml2.source_url git_hashtag Libxml2.git_hashtag binary_compression 'tar.zst' binary_sha256({ aarch64: '3cce86fdf02d0d225a49328b6e0088991328c3dd62c8cf893477080bb7d63842', armv7l: '3cce86fdf02d0d225a49328b6e0088991328c3dd62c8cf893477080bb7d63842', i686: '066aaf320d2b4d8332c7a3a271ca6e2e654223327959535da9c391fd3333c121', x86_64: 'a0196ff4509536e2be246c0fd1bcfc1921ddab3a9b1841dd3e0974e3a462ca02' }) depends_on 'glibc' # R depends_on 'libxml2' # R depends_on 'py3_setuptools' => :build depends_on 'python3' # R no_fhs meson_options '-Dpython=enabled' meson_install_extras do FileUtils.rm(Dir.glob("#{CREW_DEST_PREFIX}/**/*").reject { |f| f.include?(CREW_PY_VER.sub('py', 'python')) || !File.file?(f) }) # Delete remaining empty dirs. Dir["#{CREW_DEST_PREFIX}**/"].reverse_each { |d| Dir.rmdir d if Dir.empty?(d) } end end