blob: 59004b44b6e5c0f4a60979ffe414d09e39682748 (
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
83
84
85
86
87
88
89
90
91
92
93
94
|
# Maintainer: HurricanePootis <hurricanepootis@protonmail.com>
_pkgname=ValveResourceFormat
pkgname=source2viewer
pkgver=13.0
pkgrel=1
pkgdesc="Valve's Source 2 resource file format parser, decompiler, and exporter."
arch=('x86_64')
url="https://github.com/ValveResourceFormat/ValveResourceFormat"
license=('MIT' 'CC-BY-2.5')
depends=('glibc' 'gcc-libs' 'zlib' 'wine' 'bash' 'hicolor-icon-theme')
makedepends=('dotnet-sdk-bin' 'gendesk')
options=(!strip !debug)
conflicts=('valveresourceformat')
replaces=('valveresourcefromat')
install=$pkgname.install
source=("$url/archive/refs/tags/${pkgver}.tar.gz")
sha256sums=('48f4806daa08899f5310653e22270bb25700feb2a604e2bbf961c2ba29bb82cd')
prepare() {
cd "$srcdir/$_pkgname-$pkgver"
}
build() {
cd "$srcdir/$_pkgname-$pkgver/CLI"
dotnet publish -r linux-x64
cd "$srcdir/$_pkgname-$pkgver/GUI"
dotnet publish -r win-x64 -p:EnableWindowsTargeting=true
# Stop dotnet build server
dotnet build-server shutdown
cd "$srcdir"
gendesk -f --pkgname=source2viewer \
--pkgdesc="$pkgdesc" \
--exec="${pkgname}" \
--name="Source 2 Viewer" \
--icon="${pkgname}" \
--terminal=false \
--categories="Development;Utility;Wine" \
--custom="PrefersNonDefaultGPU=true" \
--mimetypes="application/x-source2viewer-vpk"
}
package() {
cd "$srcdir/$_pkgname-$pkgver/CLI/bin/Release/linux-x64/publish"
install -Dm755 Source2Viewer-CLI "$pkgdir/usr/bin/${pkgname}-cli"
install -Dm644 "$srcdir/$_pkgname-$pkgver/GUI/bin/Release/win-x64/publish/Source2Viewer.exe" "$pkgdir/usr/lib/$pkgname/$pkgname.exe"
cat >> "$pkgdir/usr/bin/$pkgname" <<-EOF
#!/usr/bin/env bash
export WINEPREFIX="\$HOME/.$pkgname/wine"
if [ ! -d "\$HOME"/.$pkgname ];
then
mkdir -p "\$HOME/.$pkgname/wine"
wineboot -u
fi
cd "\$HOME/.$pkgname"
DOTNET_BUNDLE_EXTRACT_BASE_DIR=./ wine /usr/lib/$pkgname/$pkgname.exe "\$@"
EOF
cat >> "$pkgdir/usr/bin/$pkgname-wine" <<-EOF
#!/usr/bin/env bash
export WINEPREFIX="\$HOME/.$pkgname/wine"
if [ ! -d "\$HOME"/.$pkgname ];
then
mkdir -p "\$HOME/.$pkgname/wine"
wineboot -u
fi
wine "\$@"
EOF
chmod 755 "$pkgdir/usr/bin/$pkgname" "$pkgdir/usr/bin/$pkgname-wine"
install -Dm644 "$srcdir/$_pkgname-$pkgver/Misc/Icons/source2viewer.png" "$pkgdir/usr/share/icons/hicolor/512x512/apps/$pkgname.png"
install -Dm644 "$srcdir/source2viewer.desktop" "$pkgdir/usr/share/applications/source2viewer.desktop"
install -dm755 "$pkgdir/usr/share/mime/packages"
cat >> "$pkgdir/usr/share/mime/packages/${pkgname}.xml" <<EOF
<?xml version="1.0" encoding="UTF-8"?>
<mime-info xmlns="http://www.freedesktop.org/standards/shared-mime-info">
<mime-type type="application/x-source2viewer-vpk">
<comment>Valve Pack File</comment>
<icon name="source2viewer"/>
<acronym>VPK</acronym>
<expanded-acronym>Valve Pack File</expanded-acronym>
<global-deleteall/>
<glob pattern="*.vpk"/>
<glob pattern="*.VPK"/>
</mime-type>
</mime-info>
EOF
}
|