blob: 2e278c73607a80f125a08e9f163de59dc539830a (
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
|
# Maintainer: Alexander <tx00100xt@yandex.ru>
# Contributer: Alexander <tx00100xt@yandex.ru>
pkgname=serioussam-dancesworld
pkginstdir=serioussamse
dancesworld=SamTSE-DancesWorld.tar.xz
pkgver=2.0.2
_srcname="SE1-TSE-DancesWorld-$pkgver"
pkgrel=1
pkgdesc="Serious Sam Classic Dances World native Linux."
arch=('i686' 'x86_64')
url="https://github.com/tx00100xt/SE1-TSE-DancesWorld"
license=('GPL2')
if pacman -Qq serioussam >/dev/null 2>&1; then
depends=('sdl2' 'python' 'bash' 'serioussam')
elif pacman -Qq serioussam-vk >/dev/null 2>&1; then
depends=('sdl2' 'python' 'bash' 'serioussam-vk')
else
echo "This package requires either "serioussam" or "serioussam-vk", but neither is installed."
echo "Compilation aborted."
return 1
fi
makedepends=('cmake' 'make' 'sed')
source=("https://github.com/tx00100xt/SE1-TSE-DancesWorld/archive/refs/tags/v$pkgver.tar.gz"
"https://github.com/tx00100xt/serioussam-mods/raw/main/SamTSE-DancesWorld/SamTSE-DancesWorld.tar.xz")
sha256sums=('e6a4cd922ee76cdd6a2f2e47c0bb9dae85bce31a02695ba1d7f1c095ae3d4d0c'
"0bf91dfc5b569cb33c9ec5029423c01de9c59690e214e299c9cb671bb92608b2")
if [[ $CARCH = "i686" ]]; then
_bits="32"
else
_bits="64"
fi
prepare(){
# Install the DancesWorld Modification data.
rm -f "$srcdir/Mods/DancesWorld/Bin/libGameMP.so" || return 0
rm -f "$srcdir/Mods/DancesWorld/Bin/libEntitiesMP.so" || return 0
chmod -R o=rx "$srcdir/Mods/DancesWorld"
chmod -R g=rx "$srcdir/Mods/DancesWorld"
# Making building scripts.
cd "$srcdir/$_srcname/Sources/"
sed -i 's/cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo/cmake -DCMAKE_BUILD_TYPE=Release/g' build-linux"$_bits".sh
chmod 755 build-linux"$_bits".sh
}
build(){
# Building Serious Sam Dances World.
cd "$srcdir/$_srcname/Sources/"
./build-linux"$_bits".sh
mv "$srcdir/$_srcname/Sources/cmake-build/Debug/libGameMP.so" "$srcdir/Mods/DancesWorld/Bin" || return 1
mv "$srcdir/$_srcname/Sources/cmake-build/Debug/libEntitiesMP.so" "$srcdir/Mods/DancesWorld/Bin" || return 1
# Removing Serious Sam Dances World tmp stuff.
cd "$srcdir/$_srcname/"
rm -fr "Sources"
rm -fr "Tools.Win32"
rm -f "$srcdir/$_srcname"/{*.sh,*.old,*.md}
rm -fr "$srcdir/$_srcname"/{Images,x32,x64}
}
package(){
# Making sure directories exist.
install -d $pkgdir/usr/lib/{serioussamse,serioussamse/Mods,serioussamse/Mods/DancesWorld}
install -d $pkgdir/usr/share/{serioussamse,serioussamse/Mods}
install -D -m0755 $srcdir/Mods/DancesWorld/Bin/libGameMP.so $pkgdir/usr/lib/serioussamse/Mods/DancesWorld
install -D -m0755 $srcdir/Mods/DancesWorld/Bin/libEntitiesMP.so $pkgdir/usr/lib/serioussamse/Mods/DancesWorld
rm -fr "$srcdir/Mods/DancesWorld/Bin"
# Making sure directories exist.
install -d $pkgdir/usr/share/licenses
# Install license.
install -D -m 644 $srcdir/$_srcname/LICENSE \
$pkgdir/usr/share/licenses/$pkgname/LICENSE
rm -f "$srcdir/$_srcname/LICENSE" || return 1
# Install data.
mv "$srcdir/Mods" "$pkgdir/usr/share/$pkginstdir/"
}
|