blob: 5a4052cee8b0bc0533f14a15d9d1dd4241dde967 (
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.4.122"
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=("cc2e1f22ce25889f0792f20080d87e8ad3377eb78db7636d81e401339ed246439e3cef100730b1f6612de0fe9524a4a969fa4a87b671394661d305190f38d0ed")
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}"/
}
|