Package Details: wxlauncher-git 0.12.0.rc3.r18.ga204abb-1

Git Clone URL: https://aur.archlinux.org/wxlauncher-git.git (read-only, click to copy)
Package Base: wxlauncher-git
Description: A cross-platform launcher for the FreeSpace 2 Open engine - Git version
Upstream URL: https://github.com/scp-fs2open/wxLauncher
Licenses: GPL2
Conflicts: wxlauncher
Provides: wxlauncher
Submitter: MageJohn
Maintainer: MageJohn
Last Packager: MageJohn
Votes: 21
Popularity: 0.000000
First Submitted: 2022-07-12 12:55 (UTC)
Last Updated: 2022-12-15 11:54 (UTC)

Dependencies (9)

Required by (2)

Sources (2)

Pinned Comments

MageJohn commented on 2022-12-15 23:02 (UTC)

State of this package

Currently it is not possible to build the latest "stable" version of wxLauncher on modern Arch Linux because it relies on very out of date packages that Arch no longer includes. These issues are mostly fixed in the upstream repository, so if they ever release a new version then I will update this package. As it is, I recommend using the wxlauncher-git package, which does currently work.

Latest Comments

« First ‹ Previous 1 2 3 4 Next › Last »

Tjuh commented on 2020-02-06 15:13 (UTC)

I'm getting this popup error when trying to launch:

An assertion failed! ./src/common/filename.cpp(2035): assert "Assert failure" failed in IsValidDirComponent(): invalid directory component in wxFileName

Anyone know what's up with that?

xphoniexx commented on 2019-02-20 05:18 (UTC) (edited on 2019-02-20 06:08 (UTC) by xphoniexx)

I had to add the python-setuptools and I think also python-pip inorder to build in clean environment. Havent tried running it yet though.

zcal commented on 2018-09-25 01:31 (UTC)

It builds after manually installing wxgtk2, as Tjuh says, but I'm getting the below error when trying to launch the game now (from wxlauncher Play button).

/tmp/makepkg/wxlauncher/src/wxLauncher-release-0.11.0/code/apis/FlagListManager.cpp(341): assert "this->IsProcessingOK()" failed in GetBuildCaps(): attempt to get build caps even though processing hasn't succeeded

Tjuh commented on 2018-07-19 17:00 (UTC)

Figured it out, needs wxgtk2 as depends.

Tjuh commented on 2018-07-18 18:22 (UTC)

I'm getting the following error when building this pkg:

Could NOT find wxWidgets (missing: wxWidgets_LIBRARIES wxWidgets_INCLUDE_DIRS) (Required is at least version "2.8.10") CMake Error at CMakeLists.txt:79 (message): Unable to locate wxWidgets -- Configuring incomplete, errors occurred! See also "/tmp/makepkg/wxlauncher/src/wxLauncher-release-0.11.0/build/CMakeFiles/CMakeOutput.log". ==> ERROR: A failure occurred in build(). Aborting...

VoltaicLoki commented on 2016-05-10 23:57 (UTC)

Updated to latest version and moved to building with python3.

leothrix commented on 2015-11-29 00:25 (UTC)

Hey there - I got errors like the following when attempting to build the package: CMake Error at /usr/share/cmake-3.4/Modules/FindPkgConfig.cmake:568 (message): None of the required 'sdl2' found I manually installed sdl2 and it appeared to build successfully, so there may need to be some additions to makedepends or depends to fully express the required build dependencies.

hollunder commented on 2015-11-21 08:46 (UTC)

This works for me: ================== # Maintainer: Michael Mansell <michael.mansell@gmail.com> # Contributor: Joe Davison <joedavison.davison@gmail.com> pkgname=wxlauncher _pkgtar=wxLauncher pkgver=0.10.1 pkgrel=1 source=("https://github.com/scp-fs2open/wxLauncher/archive/release-0.10.1.zip" "wxlauncher.png" "wxlauncher.desktop") sha256sums=('aaf721fb44eb23362da92e243ea62e9dc6d9ba80064579d66d9c411f3430327e' 'e3bf9cbe7c61378026331a21313fccd891b051e949448715625d1cfd3ae72576' '8de688171c12fdf273ece4f33177fd773395204c81cf212f8c4293f0ddd16582') pkgdesc="wxLauncher is a cross-platform launcher for the FreeSpace 2 Open engine" url="http://www.hard-light.net/forums/index.php?topic=67950.0" arch=(i686 x86_64) license=(GPL2) # change below if you want to modify the resources intall directory. The default installs it along side fs2_open resources. resourcesdir=/opt/fs2_open/wxlauncher depends=('wxpython' 'python2' 'python2-markdown' 'openal') optdepends=('fs2_open') makedepends=(cmake) #prepare() { #} build() { cd "$srcdir/${_pkgtar}-release-$pkgver" if [ ! -d build ]; then mkdir build fi cd build/ # commence build #cmake -DPYTHON_EXECUTABLE=python2 -DUSE_OPENAL=1 -DRESOURCES_PATH=$resourcesdir -DCMAKE_INSTALL_PREFIX=/usr ../ cmake -DPYTHON_EXECUTABLE=python2 -DUSE_OPENAL=1 -DRESOURCES_PATH=$resourcesdir -DCMAKE_INSTALL_PREFIX=/usr ../ -DwxWidgets_CONFIG_EXECUTABLE='/usr/bin/wx-config' -DwxWidgets_wxrc_EXECUTABLE='/usr/bin/wxrc' make } package() { cd "$srcdir/${_pkgtar}-release-$pkgver/build" make DESTDIR="$pkgdir/" install # need to install the .desktop file and icon cd "$srcdir" install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop" install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png" }

VoltaicLoki commented on 2014-07-04 06:40 (UTC)

Update now includes a .desktop and associated icon.

VoltaicLoki commented on 2014-01-29 01:23 (UTC)

Updated PKGBUILD per freevryheid's suggestion.