forked from arne-fuchs/edcas-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPKGBUILD
29 lines (25 loc) · 814 Bytes
/
PKGBUILD
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.3.0"
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"
}