27 lines
937 B
Text
27 lines
937 B
Text
# Template file for 'litecoin'
|
|
pkgname=litecoin
|
|
version=0.8.7.4
|
|
revision=1
|
|
wrksrc="${pkgname}-${version}"
|
|
hostmakedepends="git"
|
|
makedepends="zlib-devel db-devel>=5.3 libressl-devel boost-devel>=1.54 automoc4 miniupnpc-devel>=1.9"
|
|
short_desc="Peer-to-peer Internet currency based on scrypt cryptography"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
license="MIT"
|
|
update_site="https://github.com/litecoin-project/litecoin/tags"
|
|
update_pattern='archive/v?\K[\d.]+(?=\.tar\.gz)'
|
|
homepage="http://www.litecoin.org/"
|
|
|
|
do_fetch() {
|
|
git clone -b v${version} git://github.com/litecoin-project/litecoin.git ${pkgname}-${version}
|
|
}
|
|
do_build() {
|
|
make ${makejobs} -f makefile.unix -C src CXXFLAGS="$CXXFLAGS" USE_UPNP=1
|
|
}
|
|
do_install() {
|
|
vbin src/litecoind
|
|
vsconf contrib/debian/examples/bitcoin.conf
|
|
vman contrib/debian/manpages/bitcoind.1 litecoin-bitcoind.1
|
|
vman contrib/debian/manpages/bitcoin.conf.5 litecoin-bitcoin.conf.5
|
|
vlicense COPYING
|
|
}
|