blob: 46a80f88143c93a19f84af9763e0062fdec6819f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#!/usr/bin/env bash
# shellcheck disable=SC2034
# shellcheck disable=SC2154
# The PKGBUILD for NostalgiaForInfinity.
# Maintainer: Matheus <matheusgwdl@protonmail.com>
# Contributor: Matheus <matheusgwdl@protonmail.com>
readonly _pkgname="NostalgiaForInfinity"
pkgname="python-nostalgiaforinfinity"
pkgver="17.3.35"
pkgrel="1"
pkgdesc="Trading strategy for the Freqtrade crypto bot."
arch=("any")
url="https://github.com/iterativv/${_pkgname}"
license=("GPL-3.0-or-later")
depends=("bash" "python" "python-attrs" "python-freqtrade" "python-numpy" "python-pandas" "python-pandas-ta" "python-pytest" "python-rapidjson" "python-ta-lib" "python-technical")
checkdepends=("git" "python-pytest")
source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=("b16715d0b3a6aeec5410909767d6a448cb8fe6b5427a9f74b2214957da9e63ddf5488cb7f1b71a1d0be4aed36ddb86a0db8391f87d9285b94777a67fe9c9776f")
check()
{
cd "${srcdir}"/"${_pkgname}"-"${pkgver}"/ || exit 1
# "${srcdir}"/"${_pkgname}"-"${pkgver}"/tools/download-necessary-exchange-market-data-for-backtests.sh
# pytest
# rm -r "${srcdir}"/"${_pkgname}"-"${pkgver}"/user_data/data/*
}
package()
{
# Assure that the directories exist.
mkdir -p "${pkgdir}"/usr/lib/"${_pkgname}"/
mkdir -p "${pkgdir}"/usr/share/doc/"${_pkgname}"/
# Install the software.
cp -r "${srcdir}"/"${_pkgname}"-"${pkgver}"/* "${pkgdir}"/usr/lib/"${_pkgname}"/
# Install the documentation.
install -Dm644 "${srcdir}"/"${_pkgname}"-"${pkgver}"/README.md "${pkgdir}"/usr/share/doc/"${_pkgname}"/
}
|