litecoin: update to 0.17.1

This commit is contained in:
Nathan Owens 2019-11-05 19:18:45 -06:00 committed by Helmut Pozimski
parent c039f18139
commit e3ae414378

View file

@ -1,7 +1,7 @@
# Template file for 'litecoin' # Template file for 'litecoin'
pkgname=litecoin pkgname=litecoin
version=0.16.3 version=0.17.1
revision=7 revision=1
build_style=gnu-configure build_style=gnu-configure
configure_args="--with-incompatible-bdb --with-gui=qt5 --disable-static configure_args="--with-incompatible-bdb --with-gui=qt5 --disable-static
--disable-tests --with-libressl" --disable-tests --with-libressl"
@ -13,7 +13,7 @@ maintainer="Orphaned <orphan@voidlinux.org>"
license="MIT" license="MIT"
homepage="http://www.litecoin.org/" homepage="http://www.litecoin.org/"
distfiles="https://github.com/litecoin-project/litecoin/archive/v${version}.tar.gz" distfiles="https://github.com/litecoin-project/litecoin/archive/v${version}.tar.gz"
checksum=7788800eb4a433696a464563384cbdf83a47eebb8698325c75314171833227c8 checksum=6e05514a480990f1ff1e7c81b5443d741f4016c03ab5c1ef44bf4b169af88bee
if [ "$CROSS_BUILD" ]; then if [ "$CROSS_BUILD" ]; then
hostmakedepends+=" qt5-host-tools protobuf" hostmakedepends+=" qt5-host-tools protobuf"
@ -23,9 +23,12 @@ fi
pre_configure() { pre_configure() {
NOCONFIGURE=1 ./autogen.sh NOCONFIGURE=1 ./autogen.sh
} }
post_install() { post_install() {
rm -rf ${DESTDIR}/usr/include rm -rf ${DESTDIR}/usr/include
vsconf contrib/debian/examples/bitcoin.conf vsconf share/examples/litecoin.conf
vman doc/man/litecoind.1 litecoind.1 vman doc/man/litecoind.1 litecoind.1
vlicense COPYING vlicense COPYING
vmkdir usr/share/bash-completion/completions/${pkgname}
vcopy contrib/*.bash-completion usr/share/bash-completion/completions/${pkgname}
} }