blob: eb92b2b9ca61cfd32795c08855d71e83e9e2aec2 (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Maintainer: Rankyn Bass <rankyn@proton.me>
pkgname=xivlauncher-rb
pkgver=1.1.1.2
pkgrel=1
epoch=2
pkgdesc="Custom launcher for Final Fantasy XIV Online with RB Patches!"
arch=('x86_64')
url='https://github.com/rankynbass/XIVLauncher.Core/tree/RB-patched'
license=('GPL')
depends=(
'aria2'
'sdl2'
'libsecret'
'attr'
'fontconfig'
'lcms2'
'libxml2'
'libxcursor'
'libxrandr'
'libxdamage'
'libxi'
'gettext'
'freetype2'
'glu'
'libsm'
'gcc-libs'
'libpcap'
'faudio'
'desktop-file-utils'
)
makedepends=('dotnet-sdk>=8' 'git')
optdepends=(
'steam'
'lib32-sdl2'
'lib32-attr'
'lib32-fontconfig'
'lib32-lcms2'
'lib32-libxml2'
'lib32-libxcursor'
'lib32-libxrandr'
'lib32-libxdamage'
'lib32-libxi'
'lib32-gettext'
'lib32-freetype2'
'lib32-glu'
'lib32-libsm'
'lib32-gcc-libs'
'lib32-libpcap'
'lib32-faudio'
)
options=('!strip' '!debug')
source=(
"XIVLauncher.Core::git+https://github.com/rankynbass/XIVLauncher.Core.git#tag=rb-v${pkgver}"
"XIVLauncher.desktop"
"xivlauncher-rb"
)
sha512sums=(
'SKIP'
'1d500eaa424fd484d96441252f6efa4239fedc37dc4a465c5a2d59478c82cb2d03913ad2fe2fb8bf140430cbe75b5b82dcad0a8b062790253401e8729a58f4df'
'632b8f86e79b3e04b665d4b69ae9875d0ccde7e98fcaf7c252d531950feea78dc7aaac1557c0ff953e7f6abd73709d4c277f8a1d35c2f8ad8a925932b29c6843'
)
prepare() {
cd "${srcdir}/XIVLauncher.Core"
git submodule update --init --recursive
}
build() {
mkdir -p "${srcdir}/build"
cd "${srcdir}/XIVLauncher.Core/src/XIVLauncher.Core/"
echo "dotnet publish -r linux-x64 --sc -o \"${srcdir}/build\" --configuration Release -p:BuildHash=$(git rev-parse --short HEAD)"
dotnet publish -r linux-x64 --sc -o "${srcdir}/build" --configuration Release -p:BuildHash=$(git rev-parse --short HEAD)
}
package() {
install -d "${pkgdir}/usr/bin/"
install -d "${pkgdir}/opt/xivlauncher-rb/"
install -D -m644 "${srcdir}/XIVLauncher.desktop" "${pkgdir}/usr/share/applications/XIVLauncher-RB.desktop"
install -D -m644 "${srcdir}/XIVLauncher.Core/misc/linux_distrib/512.png" "${pkgdir}/usr/share/pixmaps/xivlauncher-rb.png"
cp -r "${srcdir}/build/." "${pkgdir}/opt/xivlauncher-rb/"
cp "${srcdir}/xivlauncher-rb" "${pkgdir}/usr/bin/xivlauncher-rb"
}
|