-
Notifications
You must be signed in to change notification settings - Fork 0
/
PKGBUILD
70 lines (62 loc) · 2.24 KB
/
PKGBUILD
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
# Maintainer: Alex Tharp <[email protected]>
# Based on firestorm-bin PKGBUILD by: Mike Swanson <[email protected]>
pkgname=firestorm-beta-bin
pkgver=6.4.5.60799
pkgrel=1
pkgdesc="Firestorm is a feature-packed third-party viewer for Second Life. This is the beta release that currently features the Environmental Enhancement Project (EEP)."
url="https://www.firestormviewer.org/"
license=('GPL')
arch=('x86_64')
depends=(dbus-glib gconf glu gtk2 lib32-libidn lib32-libsndfile
lib32-util-linux lib32-zlib libgl libidn libjpeg-turbo libpng
libxss libxml2 mesa nss openal sdl vlc zlib)
optdepends=(
'alsa-lib: for ALSA support'
'pepper-flash: for inworld Flash support'
'freealut: for OpenAL support'
'gstreamer: For video support - may need good, bad and ugly plugins'
'lib32-gst-plugins-good: for voice support'
'lib32-libidn11: for voice support'
'libpulse: for PulseAudio support'
'mesa-libgl: For Intel, Radeon, Nouveau support'
'nvidia-libgl: for NVIDIA support'
'nvidia-utils: for NVIDIA support')
conflicts=('firestorm' 'firestorm-bin' 'firestorm-nightly')
install=firestorm.install
source=("https://downloads.firestormviewer.org/linux/Phoenix_Firestorm-Betax64_x86_64_$pkgver.tar.xz"
firestorm.desktop
firestorm.launcher)
md5sums=('a81c456113de1fd2ba4fb52671dded42'
'6b22ac512adc9b226fd91a23f7fe9921'
'2be5ef0f27414638a81003aa2f2ea6f1')
prepare() {
mv "$srcdir/Phoenix_Firestorm-Betax64_x86_64_$pkgver" "$srcdir/firestorm"
cd "firestorm"
for patch in ../*.patch; do
if [ ! -f "$patch" ]; then
break;
else
patch -p1 -i "$patch"
fi
done
}
package() {
cd "$srcdir/firestorm"
# File modes fix.
find -type d -execdir chmod 755 "{}" \;
find -type f -execdir chmod 644 "{}" \;
chmod 755 bin/* firestorm etc/*
# Install Desktop File
install -D -m644 ../firestorm.desktop \
"$pkgdir"/usr/share/applications/firestorm.desktop
# Install Icon File
install -D -m644 firestorm_icon.png \
"$pkgdir"/usr/share/pixmaps/firestorm_icon.png
# Install Launcher
install -D -m755 ../firestorm.launcher \
"$pkgdir"/usr/bin/firestorm
# Move Data to Destination Directory
cd ..
install -d "$pkgdir"/opt
mv firestorm/ "$pkgdir"/opt
}