litecoin: switch to libressl.

This commit is contained in:
Juan RP 2014-07-15 17:04:01 +02:00
parent a82d74901d
commit 32b1807576
1 changed files with 7 additions and 9 deletions

View File

@ -1,10 +1,10 @@
# Template file for 'litecoin' # Template file for 'litecoin'
pkgname=litecoin pkgname=litecoin
version=0.8.7.1 version=0.8.7.1
revision=2 revision=3
wrksrc="${pkgname}-${version}" wrksrc="${pkgname}-${version}"
hostmakedepends="which" hostmakedepends="which"
makedepends="db-devel>=5.3 openssl-devel boost-devel>=1.54 automoc4 miniupnpc-devel>=1.8" makedepends="zlib-devel db-devel>=5.3 libressl-devel boost-devel>=1.54 automoc4 miniupnpc-devel>=1.8"
short_desc="Peer-to-peer Internet currency based on scrypt cryptography" short_desc="Peer-to-peer Internet currency based on scrypt cryptography"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
license="MIT" license="MIT"
@ -14,15 +14,13 @@ only_for_archs="i686 x86_64"
do_fetch() { do_fetch() {
git clone -b v${version} git://github.com/litecoin-project/litecoin.git ${pkgname}-${version} git clone -b v${version} git://github.com/litecoin-project/litecoin.git ${pkgname}-${version}
} }
do_build() { do_build() {
make ${makejobs} -f makefile.unix -C src CXXFLAGS="$CXXFLAGS" USE_UPNP=1 make ${makejobs} -f makefile.unix -C src CXXFLAGS="$CXXFLAGS" USE_UPNP=1
} }
do_install() { do_install() {
vinstall src/litecoind 755 usr/bin vbin src/litecoind
vinstall contrib/debian/examples/bitcoin.conf 644 usr/share/examples/$pkgname vsconf contrib/debian/examples/bitcoin.conf
vinstall contrib/debian/manpages/bitcoind.1 644 usr/share/man/man1/litecoind.1 vman contrib/debian/manpages/bitcoind.1
vinstall contrib/debian/manpages/bitcoin.conf.5 644 usr/share/man/man5/litecoin.conf.5 vman contrib/debian/manpages/bitcoin.conf.5
vinstall COPYING 644 usr/share/licenses/$pkgname vlicense COPYING
} }