42 lines
1.2 KiB
Text
42 lines
1.2 KiB
Text
# Template build file for 'gettext'.
|
|
pkgname=gettext
|
|
version=0.19.2
|
|
revision=2
|
|
build_style=gnu-configure
|
|
configure_args="--disable-java --disable-native-java --disable-csharp
|
|
--disable-libasprintf --enable-threads=posix --disable-rpath --without-emacs
|
|
--disable-openmp --with-included-libxml --with-included-libcroco"
|
|
makedepends="ncurses-devel acl-devel"
|
|
conflicts="chroot-gettext>=0"
|
|
short_desc="Internationalized Message Handling Library and tools"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="http://www.gnu.org/software/gettext/"
|
|
license="GPL-3"
|
|
distfiles="http://ftp.gnu.org/pub/gnu/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=0c48ae6ef6e0abcf6cd9cb9dcdc593d0e1a367e82259bbe113ce88ceea9249bb
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends="automake libtool git"
|
|
pre_configure() {
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
libtoolize -f
|
|
}
|
|
fi
|
|
|
|
gettext-devel_package() {
|
|
depends="gettext-libs>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove "usr/lib/*.a"
|
|
vmove usr/share/doc/gettext
|
|
vmove usr/share/aclocal
|
|
vmove usr/share/gettext
|
|
}
|
|
}
|
|
gettext-libs_package() {
|
|
short_desc+=" - shared libraries"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so*"
|
|
}
|
|
}
|