# Maintainer: Jacqueline Fisher # Maintainer: Justin Jagieniak # Contributor: Nicky D pkgname=firestorm _pkgver=6.6.14 pkgver=6.6.14.69598 pkgrel=1 pkgdesc="An open source 3D browser for Second Life & OpenSIM metaverse." arch=('i686' 'x86_64') url=https://www.firestormviewer.org license=('LGPL') depends=(apr-util 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 'libcrypt.so=1') optdepends=( 'alsa-lib: for ALSA support' 'pepper-flash: for inworld Flash support' 'freealut: for OpenAL 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') makedepends=('cmake' 'python-virtualenv' 'python-pip' 'git' 'boost' 'xz') conflicts=('firestorm-bin' 'firestorm-git') #options=(debug !strip) source=("$pkgname"::"git+https://vcs.firestormviewer.org/phoenix-firestorm#branch=Firestorm_$_pkgver" "fs-build-variables"::'git+https://vcs.firestormviewer.org/fs-build-variables' 'firestorm.desktop' 'firestorm.launcher') sha512sums=('SKIP' 'SKIP' '9467b7e497dc98121df583e2432526541035fe18b254b8a9a8ed5306f4659d66b8df33452cafc94264ef7237bbd6fd5e590be42da8de8dba7a28c34435d709c6' '768e7ecd339ab17bfd6aa652d99f3dd60325739e778a5bfce74a57ce7791b6a15d78a4c0b7ecc64475ea53e84faa6b1f6191fb1753f87e5b0bb772d4da335b5c') pkgver() { _pkgver=$(find "$srcdir/$pkgname/indra/newview/" -type f -iname viewer_version.txt -exec cat {} +) cd "$srcdir/$pkgname" _revnum=$(git rev-list --count HEAD) printf "%s.%s" $_pkgver $_revnum } prepare() { export AUTOBUILD_VARIABLES_FILE="$srcdir/fs-build-variables/variables" cd "$pkgname" virtualenv ".venv" -p python3 source .venv/bin/activate pip3 install git+https://vcs.firestormviewer.org/autobuild-3.0 pip3 install llbase export CXXFLAGS="$CXXFLAGS -Wno-error" export CFLAGS="$CFLAGS -Wno-error" autobuild configure -A 64 -c ReleaseFS_open -- -DLL_TESTS:BOOL=FALSE -DREVISION_FROM_VCS=ON -DPACKAGE:BOOL=Off --chan="ArchLinux" } build() { cd "$srcdir/$pkgname" source .venv/bin/activate cd "$srcdir/$pkgname/build-linux-x86_64" export CXXFLAGS="$CXXFLAGS -Wno-error" export CFLAGS="$CFLAGS -Wno-error" make } package() { mkdir -p "$pkgdir/opt/firestorm" mkdir -p "$pkgdir/usr/share/applications" mkdir -p "$pkgdir/usr/share/icons/hicolor/512x512/apps" cp -rT "$pkgname/build-linux-x86_64/newview/packaged" "$pkgdir/opt/firestorm" install -Dm644 "firestorm.desktop" "$pkgdir/usr/share/applications/firestorm.desktop" install -Dm644 "$pkgname/build-linux-x86_64/newview/packaged/firestorm_icon.png" "$pkgdir/usr/share/icons/hicolor/512x512/apps/firestorm.png" install -Dm755 "firestorm.launcher" "$pkgdir/usr/bin/firestorm" }