From 4d29a60b33557c0928cc0ddd27c67c8ae76d2dc9 Mon Sep 17 00:00:00 2001 From: Dmitrii Tochanskii Date: Fri, 13 Mar 2026 09:55:24 +0000 Subject: [PATCH] gettext 1.0 --- gettext.spec | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 gettext.spec diff --git a/gettext.spec b/gettext.spec new file mode 100644 index 0000000..c0b0947 --- /dev/null +++ b/gettext.spec @@ -0,0 +1,45 @@ +Name: gettext +Version: 1.0 +Release: 1%{?dist} +Summary: GNU tools and libraries for localized translated messages + +License: GPL +URL: https://www.gnu.org/software/gettext/ +Source0: https://ftp.gnu.org/pub/gnu/gettext/gettext-%{version}.tar.xz + +BuildRequires: gcc +Requires: bash + +%global _lto_cflags %{nil} + +%description +GNU gettext is an important step for the GNU Translation Project, +as it is an asset on which we may build many other steps. +This package offers to programmers, translators, and even users, +a well integrated set of tools and documentation. + +%prep +%autosetup + + +%build +export CFLAGS="$CFLAGS -Wformat" +%configure +%make_build + + +%install +%make_install + + +%files +%{_bindir} +%{_libdir} +%{_libexecdir} +%{_datadir} +%{_includedir} + + +%changelog +* Fri Mar 13 2026 Dmitrii Tochanskii +-