newsbeuter: Bump build revision after patches
[termux-packages] / packages / newsbeuter / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.newsbeuter.org
2 TERMUX_PKG_DESCRIPTION="An open-source RSS/Atom feed reader for text terminals"
3 TERMUX_PKG_VERSION=2.9
4 TERMUX_PKG_BUILD_REVISION=1
5 TERMUX_PKG_SRCURL=http://www.newsbeuter.org/downloads/newsbeuter-${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_FOLDERNAME=newsbeuter-${TERMUX_PKG_VERSION}
7 TERMUX_PKG_DEPENDS="libandroid-support, json-c, libsqlite, libcurl, libxml2, stfl, ncurses, openssl"
8 TERMUX_PKG_BUILD_IN_SRC=yes
9 TERMUX_PKG_RM_AFTER_INSTALL="share/locale"
10
11 termux_step_pre_configure () {
12 # Put a temporary link for libtinfo.so
13 ln -s -f $TERMUX_PREFIX/lib/libncursesw.so $TERMUX_PREFIX/lib/libtinfo.so
14 }
15
16 termux_step_configure () {
17 # nwesbeuter doesn't contain configure script
18 return
19 }
20
21 termux_step_post_make_install () {
22 rm $TERMUX_PREFIX/lib/libtinfo.so
23 }