void-packages/srcpkgs/bitcoin/template

63 lines
2.1 KiB
Text
Raw Normal View History

2012-07-04 13:31:21 +00:00
# Template file for 'bitcoin'
pkgname=bitcoin
2014-06-17 15:07:29 +00:00
version=0.9.2
2013-12-15 07:46:06 +00:00
revision=1
2014-06-17 15:07:29 +00:00
create_wrksrc=yes
hostmakedepends="which pkg-config"
makedepends="db-devel protobuf-devel openssl-devel boost-devel>=1.54 miniupnpc-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@gmail.com>"
2012-09-19 15:52:03 +00:00
license="MIT"
2012-07-04 13:31:21 +00:00
homepage="http://www.bitcoin.org/"
2014-06-17 15:07:29 +00:00
distfiles="http://bitcoin.org/bin/${version}/bitcoin-${version}-linux.tar.gz"
checksum=58a77aeb4c81b54d3903d85abce4f0fb580694a3611a415c5fe69a27dea5935b
2013-12-15 07:46:06 +00:00
if [ -z "$CROSS_BUILD" ]; then
# XXX -qt subpkg
2013-12-15 07:46:06 +00:00
hostmakedepends+=" automoc4"
makedepends+=" qt-devel"
2014-06-17 15:07:29 +00:00
configure_args+=" --with-gui=qt4"
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
tar xf ${pkgname}-${version}-linux/src/${pkgname}-${version}.tar.gz -C ${wrksrc}
}
do_configure() {
cd ${pkgname}-${version}
./configure ${configure_args} --with-incompatible-bdb --with-boost=${XBPS_CROSS_BASE}/usr
}
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() {
2014-06-17 15:07:29 +00:00
vinstall ${pkgname}-${version}/src/bitcoind 755 usr/bin
vinstall bitcoin.conf 644 usr/share/examples/$pkgname
vinstall bitcoind.1 644 usr/share/man/man1
vinstall bitcoin.conf.5 644 usr/share/man/man5
vinstall ${pkgname}-${version}/COPYING 644 usr/share/licenses/$pkgname
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() {
vinstall ${wrksrc}/${sourcepkg}-${version}/src/qt/bitcoin-qt 755 usr/bin
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