vim: Update to latest patch level
[termux-packages] / packages / finch / build.sh
1 TERMUX_PKG_HOMEPAGE=http://pidgin.im/
2 TERMUX_PKG_DESCRIPTION="Text-based multi-protocol instant messaging client"
3 TERMUX_PKG_VERSION=2.11.0
4 TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/pidgin/Pidgin/${TERMUX_PKG_VERSION}/pidgin-${TERMUX_PKG_VERSION}.tar.bz2
5 TERMUX_PKG_DEPENDS="libgnutls, libxml2, ncurses-ui-libs, glib"
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-gtkui --disable-gstreamer --disable-vv --disable-idn --disable-meanwhile --disable-avahi --disable-dbus --disable-perl --disable-tcl --without-zephyr --with-ncurses-headers=$TERMUX_PREFIX/include --without-python"
7 TERMUX_PKG_RM_AFTER_INSTALL="share/sounds/purple lib/purple-2/libmsn.so"
8
9 termux_step_pre_configure () {
10 # For arpa:
11 CFLAGS+=" -isystem $TERMUX_PKG_BUILDER_DIR"
12 }
13
14 termux_step_post_configure () {
15 # Hack to compile first version of libpurple-ciphers.la
16 cp $TERMUX_PREFIX/lib/libxml2.so $TERMUX_PREFIX/lib/libpurple.so
17
18 cd $TERMUX_PKG_BUILDDIR/libpurple/ciphers
19 make libpurple-ciphers.la
20 cd ..
21 make libpurple.la
22
23 # Put a more proper version in lib:
24 cp .libs/libpurple.so $TERMUX_PREFIX/lib/
25
26 make clean
27 }
28
29 termux_step_post_make_install () {
30 cd $TERMUX_PREFIX/lib
31 for lib in jabber oscar ymsg; do
32 ln -f -s purple-2/lib${lib}.so.0 .
33 done
34 }