summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Parrish2022-07-23 21:49:11 -0400
committerDavid Parrish2022-07-23 21:49:11 -0400
commitf633d0b317741270f8e908615ef69c2c3f56f86c (patch)
treec687ef56d12b2add1a711a47a3788bc6cb7afbc2
parentcc533598593400ccd0a90535a48c73f9b944354c (diff)
downloadaur-f633d0b317741270f8e908615ef69c2c3f56f86c.tar.gz
Add libsecp256k1 as a dependency. Add libbitcoin-consensus and openssl as optional dependency.
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD5
2 files changed, 7 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 746fb9d71815..b671aa420d70 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,14 @@
pkgbase = python-bitcointx
pkgdesc = An easy interface to the bitcoin transaction data structures
pkgver = 1.1.3
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/petertodd/python-bitcoinlib
arch = any
license = LGPL3
makedepends = python-setuptools
+ depends = libsecp256k1
+ optdepends = libbitcoin-consensus
+ optdepends = openssl
options = !emptydirs
source = python-bitcointx-v1.1.3.tar.gz::https://github.com/Simplexum/python-bitcointx/archive/python-bitcointx-v1.1.3.tar.gz
sha256sums = f0f487c29619df0e94a04f6deb3dc950ff9954c072017bd3eda90f73c24f0953
diff --git a/PKGBUILD b/PKGBUILD
index d1e0299f9e2f..d57bbb8e9828 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,10 +3,11 @@
pkgname=python-bitcointx
pkgver=1.1.3
-pkgrel=1
+pkgrel=2
pkgdesc="An easy interface to the bitcoin transaction data structures"
arch=('any')
-depends=()
+depends=('libsecp256k1')
+optdepends=('libbitcoin-consensus' 'openssl')
makedepends=('python-setuptools')
url="https://github.com/petertodd/python-bitcoinlib"
license=('LGPL3')