core/gettext/Pkgfile

21 lines
578 B
Plaintext
Raw Normal View History

2006-02-23 16:26:10 +01:00
# 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
2006-02-23 16:26:10 +01:00
name=gettext
2019-05-12 21:56:20 +02:00
version=0.20.1
2012-12-27 12:36:50 +01:00
release=1
source=(http://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
2006-02-23 16:26:10 +01:00
build() {
cd $name-$version
./configure --prefix=/usr \
2019-05-10 08:50:18 +02:00
--disable-{csharp,java,nls} \
2010-06-05 09:09:25 +02:00
--without-{emacs,git} \
2007-11-11 11:12:12 +01:00
--with-included-{glib,libcroco,libxml}
2019-05-12 21:56:20 +02:00
make
make DESTDIR=$PKG install
2007-11-11 11:12:12 +01:00
rm -r $PKG/usr/share/{info,doc}
2006-02-23 16:26:10 +01:00
}