blob: 16f0b13ebf89a346d072301c04a2a54cd228bf45 (
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
|
# Maintainer: NeoTheFox <aur at repraptor.33mail.com>
# Maintainer: Henry Graham <henry)dot(arch)at(hgrahamcs)dot(com(>
pkgname=edmarketconnector
pkgver=5.12.1
pkgrel=1
pkgdesc='Downloads commodity market and other station data from the game Elite: Dangerous for use with all popular online and offline trading tools'
arch=('x86_64')
url='https://github.com/EDCD/EDMarketConnector'
license=('GPL2')
provides=('edmarketconnector')
conflicts=('edmarketconnector')
depends=('tk' 'python-certifi' 'python-requests' 'python-watchdog' 'python-semantic-version')
source=("https://github.com/EDCD/EDMarketConnector/releases/download/Release%2F${pkgver}/EDMarketConnector-release-${pkgver}.tar.gz"
"edmarketconnector.sh"
"edmarketconnector.desktop")
sha256sums=(
'2450454ec05ad665b6c1eb736fc34aa2f2777c425c08b78c7bb4f6e7953cdb2a'
'7be0528d56edfcb444c4a7ba7a18e85296571e7558906c90fe6520c03206242c'
'5f755b86b1b5a3f879be6555cce0c2628006195b95f10fb48df4b1d1d8af6900')
package() {
mkdir -p ${pkgdir}/usr/lib/edmarketconnector
mkdir -p ${pkgdir}/usr/bin/
mkdir -p ${pkgdir}/usr/share/applications
cp ${srcdir}/EDMarketConnector/* ${pkgdir}/usr/lib/edmarketconnector -r
install -m755 edmarketconnector.sh ${pkgdir}/usr/bin/edmarketconnector.sh
install -m644 edmarketconnector.desktop ${pkgdir}/usr/share/applications/edmarketconnector.desktop
}
|