2006-02-23 15:26:10 +00:00
|
|
|
# Description: The GNU internationalization library
|
2021-12-13 12:20:07 +01:00
|
|
|
# URL: https://www.gnu.org/software/gettext/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
|
|
# Depends on: acl ncurses
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=gettext
|
2024-02-22 09:40:54 +01:00
|
|
|
version=0.22.5
|
2023-06-18 11:45:47 +02:00
|
|
|
release=1
|
2021-12-13 12:20:07 +01:00
|
|
|
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2021-12-13 12:20:07 +01:00
|
|
|
cd $name-$version
|
2022-10-13 14:36:04 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2021-12-13 12:20:07 +01:00
|
|
|
--enable-{shared,static} \
|
|
|
|
--disable-{csharp,java,nls} \
|
|
|
|
--without-{emacs,git} \
|
2022-10-15 14:29:33 +02:00
|
|
|
--with-included-{glib,libcroco,libxml,libunistring}
|
2021-12-13 12:20:07 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/{info,doc}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|