blob: 7c954f78cf817cb251ceea1e7a0e592d96221d31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Maintainer: xuhcc <xuhcc@cryptolab.net>
pkgname='beancount-cryptoassets'
pkgdesc='Price sources for Beancount that provide prices for various cryptoassets'
pkgver=2.4.1
pkgrel=1
arch=('any')
url="https://github.com/xuhcc/beancount-cryptoassets"
license=('GPL')
depends=('beancount')
optdepends=('beanprice: standalone bean-price package')
source=("$pkgname-$pkgver.tar.gz::https://github.com/xuhcc/beancount-cryptoassets/archive/v${pkgver}.tar.gz")
sha256sums=('b75e0da679cc78e826104555050d5d9b213a05bb2d248f4c246e99b4b4a7d6e6')
package () {
cd "${pkgname}-${pkgver}"
python setup.py install --prefix=/usr --root="${pkgdir}"
}
|