blob: b675225e88120ecf8a388a8c5416d48e3eddcdfd (
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
|
# Maintainer: Aidan Coward <aidan -dot- coward -at- gmail -dot- com>
# Feedback is appreciated
pkgname=xmage
pkgver=1.4.54
pkgrel=0
pkgdesc="Java-based program for playing Magic:The Gathering, including client and server"
arch=('any')
url="http://xmage.today"
license=('MIT')
source=(
"http://beta.xmage.today/files/mage-full_1.4.54-dev_2024-09-25_13-04.zip"
'https://raw.githubusercontent.com/magefree/mage/master/LICENSE.txt'
'https://raw.githubusercontent.com/magefree/Launcher/master/src/main/resources/icon-mage.png')
sha256sums=("b2ce2053e827a299f0b2c1b143ffa8ed9d5b3c998941f85e57efa41ec7d1c6b4"
"SKIP"
"SKIP")
depends=('jre8-openjdk' 'java8-openjfx')
optdepends=('wmname: change window manager name for compatibility with certain WMs')
install="${pkgname}.install"
package() {
#cd "${srcdir}"
pwd
pwd -P
echo "changing file format of included scripts..."
awk '{ sub("\r$", ""); print }' xmage/mage-client/startClient.sh > xmage/mage-client/startClient-unix.sh
awk '{ sub("\r$", ""); print }' xmage/mage-server/startServer.sh > xmage/mage-server/startServer-unix.sh
echo "changing default locations of scripts..."
sed -i 's|\.\/lib|\/usr\/share\/xmage\/xmage\/mage-client\/lib|' xmage/mage-client/startClient-unix.sh
sed -i 's|\.\/lib|\/usr\/share\/xmage\/xmage\/mage-server\/lib|' xmage/mage-server/startServer-unix.sh
echo "adding cd to relevant /usr/share/xmage/ directory..."
sed -i '2i cd /usr/share/xmage/xmage/mage-client' xmage/mage-client/startClient-unix.sh
sed -i '2i cd /usr/share/xmage/xmage/mage-server' xmage/mage-server/startServer-unix.sh
echo "increasing default memory limit of client and server"
sed -i 's|-Xmx1024m|-Xmx2048m|g' xmage/mage-client/startClient-unix.sh
sed -i 's|-Xmx1024m|-Xmx2048m|g' xmage/mage-server/startServer-unix.sh
echo "moving files..."
install -Dm755 xmage/mage-client/startClient-unix.sh "${pkgdir}"/usr/bin/mage-client
install -Dm755 xmage/mage-server/startServer-unix.sh "${pkgdir}"/usr/bin/mage-server
echo "creating /usr/share/xmage..."
install -dm755 "${pkgdir}"/usr/share/xmage
echo "copying files to /usr/share/xmage..."
cp -ra ./* "${pkgdir}"/usr/share/xmage/
echo "setting permissions of /usr/share/xmage..."
chmod -R a+rwx "${pkgdir}"/usr/share/xmage
echo "installing license: ${license}..."
install -Dm644 LICENSE.txt "${pkgdir}"/usr/share/licences/"${pkgname}"/LICENSE.txt
echo "installing mage-server systemd unit file to /usr/lib/systemd/system..."
mkdir -p "${pkgdir}"/usr/lib/systemd/system
install -m755 ../mage-server.service "${pkgdir}"/usr/lib/systemd/system
echo "installing icon and .desktop file..."
mkdir -p "${pkgdir}"/usr/share/icons
install -m755 icon-mage.png "${pkgdir}"/usr/share/icons/
mkdir -p "${pkgdir}"/usr/share/applications
install -m755 ../xmage.desktop "${pkgdir}"/usr/share/applications/xmage.desktop
}
|