blob: 15b5cacc5b1a45c4805e5ac9b289b1537eafa2b9 (
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="16.5.43"
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")
source=("${pkgname}-v${pkgver}.tar.gz::${url}/archive/refs/tags/v${pkgver}.tar.gz")
sha512sums=("f33c83e8c918fde516467c1a78ecd2c4143f25c290b12428274d0b4925d3217f2783e63d123b2c53e9372823081f790a56c235e34c485c85968fa60ae2f2711e")
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}"/
}
|