mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-03-15-00-19 * Add built packages for linux/386 to updates-2025-03-15-00-19 * Add built packages for linux/amd64 to updates-2025-03-15-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-15-00-19 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
26 lines
831 B
Ruby
26 lines
831 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_extract_msg < Pip
|
|
description 'Extract-msg extracts emails and attachments saved in Microsoft Outlook\'s .msg files.'
|
|
homepage 'https://github.com/mattgwwalker/msg-extractor/'
|
|
version "0.53.2-#{CREW_PY_VER}"
|
|
license 'GPL-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '1f9b59d9388e6742d166bf1dc6cf3f724068110a4e5691d699c2e2e440d76ed0',
|
|
armv7l: '1f9b59d9388e6742d166bf1dc6cf3f724068110a4e5691d699c2e2e440d76ed0',
|
|
i686: 'f0f8a73f040c1ce025bae6b8c25328401d5922fcae7ebf8d5f6e2cdc092278f9',
|
|
x86_64: '9c5ca18c91a051fd4d15be5ceb6091a504b57dd7029fbc4897405ec3e18a7b42'
|
|
})
|
|
|
|
depends_on 'py3_imapclient'
|
|
depends_on 'py3_olefile'
|
|
depends_on 'py3_tzlocal'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|