summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bf66bec05253a921dcae8991d8c74987d28fbed6 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!/bin/bash
# Maintainer: Matheus Gabriel Werny de Lima <matheusgwdl@protomail.com>

_pkgname=NBXplorer
_pkgname_lc=$(echo "${_pkgname}" | tr "[:upper:]" "[:lower:]")

# shellcheck disable=SC2034
pkgname=nbxplorer-git
# shellcheck disable=SC2034
pkgver=latest_tag
# shellcheck disable=SC2034
pkgrel=1
# shellcheck disable=SC2034
epoch=
# shellcheck disable=SC2034
pkgdesc="A minimalist UTXO tracker for HD wallets."
# shellcheck disable=SC2034
arch=("any")
url="https://github.com/dgarage/${_pkgname}"
# shellcheck disable=SC2034
license=("MIT")
# shellcheck disable=SC2034
groups=()
# shellcheck disable=SC2034
depends=("aspnet-runtime-3.1" "bitcoin-daemon" "dotnet-sdk-3.1")
# shellcheck disable=SC2034
makedepends=("git")
# shellcheck disable=SC2034
checkdepends=()
# shellcheck disable=SC2034
optdepends=()
# shellcheck disable=SC2034
provides=("${_pkgname_lc}")
# shellcheck disable=SC2034
conflicts=("nbxplorer")
# shellcheck disable=SC2034
replaces=()
# shellcheck disable=SC2034
backup=()
# shellcheck disable=SC2034
options=()
# shellcheck disable=SC2034
install=
# shellcheck disable=SC2034
changelog=
# shellcheck disable=SC2034
source=("git+${url}.git")
# shellcheck disable=SC2034
noextract=()
# shellcheck disable=SC2034
md5sums=("SKIP")
# shellcheck disable=SC2034
validpgpkeys=()

pkgver()
{
    # shellcheck disable=SC2154
    cd "${srcdir}"/"${_pkgname}"/ || exit
    version=$(git describe --tags --abbrev=0)
    printf "%s" "${version}" | sed "s/^v//;s/-/_/g;s/\//./g"
}

build()
{
    cd "${srcdir}"/"${_pkgname}"/ || exit
    git checkout tags/"$(git describe --tags --abbrev=0)"
    ./build.sh
}

package()
{
    # Assure that the directories exist.
    # shellcheck disable=SC2154
    mkdir -p "${pkgdir}"/usr/bin/
    mkdir -p "${pkgdir}"/usr/share/
    mkdir -p "${pkgdir}"/usr/share/doc/"${_pkgname}"/
    mkdir -p "${pkgdir}"/usr/share/licenses/"${_pkgname}"/

    # Modify run.sh to state the absolute path of the .csproj.
    echo -e "#!/bin/bash
dotnet run --no-launch-profile --no-build -c Release -p \"/usr/share/\"${_pkgname}\"/NBXplorer/NBXplorer.csproj\" -- \"\${@}\"" > "${srcdir}"/"${_pkgname}"/run.sh

    # Install the software.
    cp -r "${srcdir}"/"${_pkgname}"/ "${pkgdir}"/usr/share/

    ## Link the scripts.
    ln -sfrT "${pkgdir}"/usr/share/"${_pkgname}"/run.sh "${pkgdir}"/usr/bin/"${_pkgname_lc}"
    chmod 755 "${pkgdir}"/usr/bin/"${_pkgname_lc}"

    # Install the documentation.
    install -Dm644 "${srcdir}"/"${_pkgname}"/README.md "${pkgdir}"/usr/share/doc/"${_pkgname}"/

    # Install the license.
    install -Dm644 "${srcdir}"/"${_pkgname}"/LICENSE "${pkgdir}"/usr/share/licenses/"${_pkgname}"/
}