mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-03-24-23-21 * Add unbuilt updated ruby gem packages to updates-2025-03-24-23-21 * Add built packages for linux/386 to updates-2025-03-24-23-21 * Add built packages for linux/amd64 to updates-2025-03-24-23-21 * Add built packages for linux/arm/v7 to updates-2025-03-24-23-21 --------- Co-authored-by: Zopolis4 <Zopolis4@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
739 B
Ruby
23 lines
739 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_docx2txt < Pip
|
|
description 'Docx2txt is a pure python based utility to extract text and images from docx files.'
|
|
homepage 'https://github.com/ankushshah89/python-docx2txt/'
|
|
version "0.9-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e23497f15f6d2b3065eb703b731e2c9d0716a4b7d12cbcafd3792d85b35e69fa',
|
|
armv7l: 'e23497f15f6d2b3065eb703b731e2c9d0716a4b7d12cbcafd3792d85b35e69fa',
|
|
i686: '78381058a584d8ae9ba2c33a50765bc54f7763bd155bab8a9bf16b7c366e208d',
|
|
x86_64: 'daafc407e3d8c43de36e90956280b545a2644f07ba0635bf0da392cd1fb5295d'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|