postgresql: Update from 9.6.2 to 9.6.3
[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_REVISION=1
5 TERMUX_PKG_SRCURL=http://www.newsbeuter.org/downloads/newsbeuter-${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_SHA256=74a8bf019b09c3b270ba95adc29f2bbe48ea1f55cc0634276b21fcce1f043dc8
7 TERMUX_PKG_FOLDERNAME=newsbeuter-${TERMUX_PKG_VERSION}
8 TERMUX_PKG_DEPENDS="libandroid-support, json-c, libsqlite, libcurl, libxml2, stfl, ncurses, openssl"
9 TERMUX_PKG_BUILD_IN_SRC=yes
10 TERMUX_PKG_RM_AFTER_INSTALL="share/locale"
11
12 termux_step_pre_configure () {
13 # Put a temporary link for libtinfo.so
14 ln -s -f $TERMUX_PREFIX/lib/libncursesw.so $TERMUX_PREFIX/lib/libtinfo.so
15 }
16
17 termux_step_configure () {
18 # nwesbeuter doesn't contain configure script
19 return
20 }
21
22 termux_step_post_make_install () {
23 rm $TERMUX_PREFIX/lib/libtinfo.so
24 }