core/gettext/Pkgfile

25 lines
606 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01: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 16:26:10 +01:00
name=gettext
2023-11-20 17:00:26 +01:00
version=0.22.4
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 16:26:10 +01:00
build() {
2023-12-24 12:43:51 +01:00
cd $name-$version
2023-12-24 12:43:51 +01:00
./configure \
--prefix=/usr \
--enable-{shared,static} \
--disable-{csharp,java,nls} \
--without-{emacs,git} \
--with-included-{glib,libcroco,libxml,libunistring}
make
make DESTDIR=$PKG install
2023-12-24 12:43:51 +01:00
rm -r $PKG/usr/share/{info,doc}
2006-02-23 16:26:10 +01:00
}