blob: 0d1ef2dc1930872f3b7233f429673ec7c82db564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Maintainer: Graham Smith <gps1539 at gmail dot com>
pkgname=stock_quote
pkgver=2.0.16
pkgrel=1
pkgdesc="python script to get stock quotes and calculate gains and losses"
arch=('any')
license=('GPL')
url='https://github.com/gps1539/stock_quote'
depends=('python' 'python-numpy' 'python-colorama' 'python-pandas' 'python-plotly')
makedepends=()
source=("https://raw.githubusercontent.com/gps1539/stock_quote/master/stock_quote/stock_quote")
md5sums=('e2f41ea40a49b1175283ce619d996352')
package()
{
install -d "$pkgdir/usr/bin/"
install -m755 "stock_quote" "$pkgdir/usr/bin/"
}
|