32 lines
703 B
TOML
32 lines
703 B
TOML
[build]
|
|
type = "autotools"
|
|
|
|
[build.flags]
|
|
configure = ["--disable-static"]
|
|
post_install = [ "chmod -v 0755 $DESTDIR/usr/lib/preloadable_libintl.so" ]
|
|
skip_tests = true # tests are flaky
|
|
|
|
[dependencies]
|
|
runtime = [
|
|
"glibc",
|
|
"acl",
|
|
"sh",
|
|
]
|
|
|
|
[package]
|
|
description = "utilities for internationalization and localization"
|
|
homepage = "https://www.gnu.org/software/gettext/"
|
|
license = [
|
|
"GFDL-1.2-only",
|
|
"GPL-2.0-only",
|
|
"GPL-2.0-or-later",
|
|
"LGPL-2.0-only",
|
|
]
|
|
name = "gettext"
|
|
version = "1.0"
|
|
|
|
[[source]]
|
|
extract_dir = "$name-$version"
|
|
sha256 = "71132a3fb71e68245b8f2ac4e9e97137d3e5c02f415636eb508ae607bc01add7"
|
|
url = "https://mirrors.kernel.org/gnu/gettext/gettext-$version.tar.xz"
|