summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bebfd894f03af6b89d3f5859fe177f8526bbae59 (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.6"
pkgrel="3"
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-linux.tar.gz")
md5sums=("SKIP")

prepare() {
	cd "${srcdir}"
	tar xvzf edcas-client-linux.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"
}