void-packages/srcpkgs/bitcoin/template

73 lines
2.1 KiB
Bash
Raw Normal View History

2012-07-04 13:31:21 +00:00
# Template file for 'bitcoin'
pkgname=bitcoin
2016-09-10 15:52:11 +00:00
version=0.13.0
revision=1
2014-06-17 15:07:29 +00:00
create_wrksrc=yes
2015-02-16 19:14:41 +00:00
hostmakedepends="pkg-config yasm"
2016-03-03 13:22:26 +00:00
makedepends="db-devel protobuf-devel boost-devel miniupnpc-devel libevent-devel qrencode-devel"
2012-07-04 13:31:21 +00:00
short_desc="Bitcoin is a peer-to-peer network based digital currency"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
2012-09-19 15:52:03 +00:00
license="MIT"
2016-03-03 13:22:26 +00:00
homepage="https://bitcoin.org/"
2015-05-13 13:25:18 +00:00
distfiles="https://bitcoin.org/bin/bitcoin-core-${version}/bitcoin-${version}.tar.gz"
2016-09-10 15:52:11 +00:00
checksum=0c7d7049689bb17f4256f1e5ec20777f42acef61814d434b38e6c17091161cda
2015-08-06 19:12:43 +00:00
case "$XBPS_TARGET_MACHINE" in
*-musl) broken="http://build.voidlinux.eu/builders/armv6l-musl_builder/builds/2804/steps/shell_3/logs/stdio";;
esac
2013-12-15 07:46:06 +00:00
if [ -z "$CROSS_BUILD" ]; then
# XXX -qt subpkg
makedepends+=" qt5-devel qt5-tools-devel"
configure_args+=" --with-gui"
fi
2012-07-04 13:31:21 +00:00
2014-06-17 15:07:29 +00:00
pre_configure() {
extra_files="
https://raw.github.com/bitcoin/bitcoin/v${version}/contrib/debian/bitcoin-qt.desktop
https://raw.github.com/bitcoin/bitcoin/v${version}/share/pixmaps/bitcoin128.png
https://raw.github.com/bitcoin/bitcoin/v${version}/contrib/debian/examples/bitcoin.conf
https://raw.github.com/bitcoin/bitcoin/v${version}/contrib/debian/manpages/bitcoind.1
https://raw.github.com/bitcoin/bitcoin/v${version}/contrib/debian/manpages/bitcoin.conf.5"
for f in ${extra_files}; do
$XBPS_FETCH_CMD $f
done
}
do_configure() {
cd ${pkgname}-${version}
2016-03-25 21:34:52 +00:00
./configure ${configure_args} \
--with-incompatible-bdb \
--disable-ccache \
--disable-static \
--enable-hardening \
--with-boost=${XBPS_CROSS_BASE}/usr
2014-06-17 15:07:29 +00:00
}
2012-07-04 13:31:21 +00:00
do_build() {
2014-06-17 15:07:29 +00:00
cd ${pkgname}-${version}
make ${makejobs}
2012-07-04 13:31:21 +00:00
}
do_install() {
2015-02-16 19:14:41 +00:00
vbin ${pkgname}-${version}/src/bitcoin-cli
2014-07-15 15:06:15 +00:00
vbin ${pkgname}-${version}/src/bitcoind
2016-09-10 15:52:11 +00:00
vbin ${pkgname}-${version}/src/bitcoin-tx
2014-07-15 15:06:15 +00:00
vsconf bitcoin.conf
vman bitcoind.1
vman bitcoin.conf.5
vlicense ${pkgname}-${version}/COPYING
2012-07-04 13:31:21 +00:00
}
if [ -z "$CROSS_BUILD" ]; then
2014-06-17 15:07:29 +00:00
bitcoin-qt_package() {
depends="desktop-file-utils"
short_desc+=" - QT GUI"
pkg_install() {
2014-07-15 15:06:15 +00:00
vbin ${wrksrc}/${sourcepkg}-${version}/src/qt/bitcoin-qt
2014-06-17 15:07:29 +00:00
vinstall ${wrksrc}/bitcoin-qt.desktop 644 usr/share/applications
vinstall ${wrksrc}/bitcoin128.png 644 usr/share/pixmaps
}
2014-06-17 15:07:29 +00:00
}
fi # !CROSS_BUILD