core/gettext/Pkgfile

25 lines
606 B
Plaintext

# Description: The GNU internationalization library
# URL: https://www.gnu.org/software/gettext/
# Maintainer: CRUX System Team, core-ports at crux dot nu
# Depends on: acl ncurses
name=gettext
version=0.22.4
release=1
source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--enable-{shared,static} \
--disable-{csharp,java,nls} \
--without-{emacs,git} \
--with-included-{glib,libcroco,libxml,libunistring}
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{info,doc}
}