core/gettext/Pkgfile

22 lines
540 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
2020-07-31 12:34:33 +02:00
version=0.21
2012-12-27 12:36:50 +01: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() {
2021-12-13 12:20:07 +01:00
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}
2006-02-23 16:26:10 +01:00
}