summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 917a7f65a85d62384a2f2c3912cce6ccfefe742d (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
# Maintainer: Andre Bauer <novamoon@ts.3v.fi>
pkgname=evelauncher
pkgver=1146159
pkgrel=1
epoch=
pkgdesc="Unofficial Eve Online Launcher brought to us by CCP Devs. It simplifies the installation of Eve 
Online on Linux "
arch=('any')
url="https://forums.eveonline.com/default.aspx?g=posts&t=482663"
license=('custom')
groups=()
depends=('wine'
'libopenssl-1.0-compat')
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=()
changelog=
source=(
	"https://binaries.eveonline.com/evelauncher-1146159.tar.gz"
	"evelauncher.desktop"
	"icon.png")
noextract=()
md5sums=('468c81b40abe535695fa2a0b812588db'
         '39a115108240a68c1f1a4a24837e9632'
         '37c1b0799f8e671b298c288d900dd7f0')

package() {
	# Install the main files.
  	install -d "${pkgdir}/opt/${pkgname}"
  	cp -a "${srcdir}/evelauncher/." "${pkgdir}/opt/${pkgname}"
	# Exec bit
  	chmod 755 "${pkgdir}/opt/${pkgname}/evelauncher"


  	# Desktop Entry
  	install -d "${pkgdir}/usr/share/applications"
  	install "${srcdir}/evelauncher.desktop" "${pkgdir}/usr/share/applications"
	
	install -d "${pkgdir}/opt/${pkgname}"
	install "${srcdir}/icon.png" "${pkgdir}/opt/${pkgname}"	
	
  	# Main binary
 	install -d "${pkgdir}/usr/bin"
 	ln -s "/opt/${pkgname}/evelauncher" "${pkgdir}/usr/bin/${pkgname}"
}