mirror of
https://github.com/outbackdingo/ports.git
synced 2026-04-05 11:09:13 +00:00
28 lines
559 B
Plaintext
Executable File
28 lines
559 B
Plaintext
Executable File
# description : Utilities for internationalization and localization
|
|
# depends : ncurses acl
|
|
|
|
name=gettext
|
|
version=0.22.4
|
|
release=2
|
|
source="https://ftp.gnu.org/gnu/$name/$name-$version.tar.xz"
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--disable-java \
|
|
--disable-csharp \
|
|
--without-git \
|
|
--without-emacs \
|
|
--with-included-libxml \
|
|
--with-included-libcroco \
|
|
--with-included-glib
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
}
|
|
|