mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* libgpgerror 1.47 -> libgpg_error 1.50 * rgb 1.0.6-1 -> 1.1.0 * libraw1394 2.0.5-1 -> 2.1.2 * multitail 6.4.2-1 -> 7.1.3 * quakespasm 0.93.1-1 -> 0.96.3
31 lines
1.0 KiB
Ruby
31 lines
1.0 KiB
Ruby
require 'buildsystems/autotools'
|
|
|
|
class Gmime < Autotools
|
|
description 'GMime is a powerful MIME (Multipurpose Internet Mail Extension) utility library. It is meant for creating, editing, and parsing MIME messages and structures.'
|
|
homepage 'https://developer.gnome.org/gmime/'
|
|
version '3.2.14-de4f1b0'
|
|
license 'LGPL-2.1+'
|
|
compatibility 'x86_64 aarch64 armv7l'
|
|
source_url 'https://github.com/jstedfast/gmime.git'
|
|
git_hashtag 'de4f1b044141df3ef0b1fc20be422dc667443484'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '64a5336aa9c72b3afb128b124c24a09d229e787915c1d17b0874e1775d98e9ea',
|
|
armv7l: '64a5336aa9c72b3afb128b124c24a09d229e787915c1d17b0874e1775d98e9ea',
|
|
x86_64: 'db5b68e4c23881dfe323a660d14d9f5112f79c998bdf98dad5f5fb19123afcbd'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'glib' # R
|
|
depends_on 'gpgme' # R
|
|
depends_on 'libassuan' # R
|
|
depends_on 'libgpg_error' # R
|
|
depends_on 'libidn2' # R
|
|
depends_on 'libunistring' # R
|
|
depends_on 'vala' => :build
|
|
depends_on 'zlib' # R
|
|
|
|
gnome
|
|
end
|