core/gettext/Pkgfile

23 lines
557 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
2023-06-18 11:45:47 +02:00
version=0.22
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
2022-10-13 14:36:04 +02:00
./configure \
--prefix=/usr \
2021-12-13 12:20:07 +01:00
--enable-{shared,static} \
--disable-{csharp,java,nls} \
--without-{emacs,git} \
2022-10-15 14:29:33 +02:00
--with-included-{glib,libcroco,libxml,libunistring}
2021-12-13 12:20:07 +01:00
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/{info,doc}
2006-02-23 16:26:10 +01:00
}