22 lines
619 B
Plaintext
22 lines
619 B
Plaintext
# Description: The GNU internationalization library
|
|
# URL: http://www.gnu.org/software/gettext/
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
|
# Depends on: ncurses acl
|
|
|
|
name=gettext
|
|
version=0.21
|
|
release=1
|
|
source=(http://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}
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share/{info,doc}
|
|
}
|