From c82e88dd00d1b0b7fcfb4e5628d99611388cef6f Mon Sep 17 00:00:00 2001 From: rawnix ports Date: Sat, 26 Sep 2026 18:19:05 +0000 Subject: sync 2026-09-26 18:19 UTC 1672 files changed, 151396 insertions(+) --- opt/gettext/MAKEPKG | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 opt/gettext/MAKEPKG (limited to 'opt/gettext/MAKEPKG') diff --git a/opt/gettext/MAKEPKG b/opt/gettext/MAKEPKG new file mode 100644 index 0000000..ba73926 --- /dev/null +++ b/opt/gettext/MAKEPKG @@ -0,0 +1,42 @@ +#!/bin/mkpkg +# description: GNU internationalization utilities +# url: https://www.gnu.org/software/gettext/ +name=gettext +version=1.0 +release=1 +depends=() +makedeps=() +source=(https://ftp.gnu.org/pub/gnu/gettext/gettext-$version.tar.gz) +sha256sums=( + "85d99b79c981a404874c02e0342176cf75c7698e2b51fe41031cf6526d974f1a" +) + +build() { + cd $name-$version + ./configure \ + --prefix=/usr \ + --disable-static \ + --disable-java \ + --disable-native-java \ + --disable-csharp \ + --disable-libasprintf \ + --without-emacs \ + --without-git \ + --without-cvs + make + make DESTDIR=$PKG install + + rm -rf $PKG/usr/share/doc + rm -rf $PKG/usr/share/locale + rm -rf $PKG/usr/include + rm -rf $PKG/usr/libexec + +} + +signify() { + untrusted comment: public key + RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3 +} + +# vim: filetype=sh + -- cgit v1.3.1