summaryrefslogtreecommitdiff
path: root/gettext/Pkgfile
blob: 95addc5940ad07b511d47edf40a4b3a25d536c3e (plain)
    1 # Description: The GNU internationalization library
    2 # URL: https://www.gnu.org/software/gettext/
    3 # Maintainer: CRUX System Team, core-ports at crux dot nu
    4 # Depends on: acl ncurses
    5 
    6 name=gettext
    7 version=0.21.1
    8 release=2
    9 source=(https://ftpmirror.gnu.org/gnu/$name/$name-$version.tar.xz)
   10 
   11 build() {
   12 	cd $name-$version
   13 	./configure \
   14 		--prefix=/usr \
   15 		--enable-{shared,static} \
   16 		--disable-{csharp,java,nls} \
   17 		--without-{emacs,git} \
   18 		--with-included-{glib,libcroco,libxml,libunistring}
   19 	make
   20 	make DESTDIR=$PKG install
   21 	rm -r $PKG/usr/share/{info,doc}
   22 }

Generated by cgit