summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: db27b72b1f0e271bd8ee8f30f8e72b412e19c00c (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
#Maintainer: serf dot jp at gmail dot com
pkgname="edcas-client-bin"
_pkgname="edcas-client"
pkgver="0.2.2"
pkgrel="1"
pkgdesc="Elite Dangerous Commander Assistant System. Shows system information compact for explorer."
url="https://github.com/arne-fuchs/edcas-client"

arch=("x86_64")
depends=("gcc-libs" "glibc" "openssl" "binutils")
#optdepends=()
#conflicts=()

license=("Apache")
source=("$url/releases/download/$pkgver/edcas-client.tar.gz")
md5sums=("SKIP")

prepare() {
    cd "${srcdir}"
    tar xvzf edcas-client.tar.gz
    cd $_pkgname
}

package() {
    cd $_pkgname  
    install -Dm755 edcas-client "${pkgdir}/usr/bin/$_pkgname"
    install -Dm644 settings-example.json "${pkgdir}/etc/$_pkgname/settings-example.json"
    install -Dm644 materials.json "${pkgdir}/usr/share/$_pkgname/materials.json"
}