mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt updated pip packages to updates-2024-12-14-00-19 * Add updated packages for linux/386 to updates-2024-12-14-00-19 * Add updated packages for linux/amd64 to updates-2024-12-14-00-19 * Add updated packages for linux/arm/v7 to updates-2024-12-14-00-19 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
23 lines
688 B
Ruby
23 lines
688 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pspdfutils < Pip
|
|
description 'Utilities for manipulating PostScript documents.'
|
|
homepage 'https://github.com/rrthomas/psutils'
|
|
version "3.3.7-#{CREW_PY_VER}"
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9515ae6cb5198530d7bb534c4ecc23e4e448e4b28e76e06daed8be0dbe7182fe',
|
|
armv7l: '9515ae6cb5198530d7bb534c4ecc23e4e448e4b28e76e06daed8be0dbe7182fe',
|
|
i686: '4cb75f193952659b1ed49a762474e4cddf6db6d23bd4a190171342f1606e652e',
|
|
x86_64: 'a5534106ab2d599cb1f06b9a8b35e53dc59591bf18338748f6f827b37af044b9'
|
|
})
|
|
|
|
depends_on 'libpaper'
|
|
|
|
no_source_build
|
|
end
|