23 lines
559 B
Plaintext
23 lines
559 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.21.1
|
|
release=2
|
|
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}
|
|
}
|