Package Details: solarus 1.6.5-1

Git Clone URL: https://aur.archlinux.org/solarus.git (read-only, click to copy)
Package Base: solarus
Description: A lightweight, free and open-source game engine for Action-RPGs
Upstream URL: http://www.solarus-games.org/
Licenses: GPL3
Conflicts: solarus-git, solarus-run
Submitter: BenObiWan
Maintainer: MCMic
Last Packager: MCMic
Votes: 44
Popularity: 0.000000
First Submitted: 2011-12-17 11:58 (UTC)
Last Updated: 2021-04-26 07:58 (UTC)

Latest Comments

1 2 3 Next › Last »

MCMic commented on 2020-08-26 08:18 (UTC)

@matth Thanks, fixed.

matth commented on 2020-08-25 16:12 (UTC)

Since the latest update I get this.

CMake Error at gui/cmake/AddDependencies.cmake:5 (find_package):
  By not providing "FindQt5LinguistTools.cmake" in CMAKE_MODULE_PATH this
  project has asked CMake to find a package configuration file provided by
  "Qt5LinguistTools", but CMake did not find one.

  Could not find a package configuration file provided by "Qt5LinguistTools"
  (requested version 5.7) with any of the following names:

    Qt5LinguistToolsConfig.cmake
    qt5linguisttools-config.cmake

  Add the installation prefix of "Qt5LinguistTools" to CMAKE_PREFIX_PATH or
  set "Qt5LinguistTools_DIR" to a directory containing one of the above
  files.  If "Qt5LinguistTools" provides a separate development package or
  SDK, be sure it has been installed.
Call Stack (most recent call first):
  gui/CMakeLists.txt:8 (include)

It seems the qt5-tools dependency that was removed is still needed. Builds fine after adding that back in.

MCMic commented on 2020-08-20 21:59 (UTC)

@franck.stauffer Thanks, pushed.

qontinuum commented on 2020-08-13 21:51 (UTC) (edited on 2020-08-15 11:07 (UTC) by qontinuum)

Here is an updated PKGBUILD with some improvements/modifications:

pkgname=solarus
pkgver=1.6.4
pkgrel=1
pkgdesc="A lightweight, free and open-source game engine for Action-RPGs"
arch=('i686' 'x86_64')
url="http://www.solarus-games.org/"
license=('GPL3')
depends=('glm'
         'hicolor-icon-theme'
         'libmodplug>=0.8.8.4'
         'libvorbis'
         'luajit>=2.0'
         'openal'
         'physfs'
         'qt5-base'
         'sdl2>=2.0.6'
         'sdl2_image'
         'sdl2_ttf')
makedepends=('cmake')
conflicts=('solarus-git' 'solarus-run')
source=("https://gitlab.com/solarus-games/${pkgname}/-/archive/v${pkgver}/${pkgname}-v${pkgver}.tar.gz")
b2sums=('fdf9b6703af8424b4731b25b307dcc7a0966cbf89a0bf043bcfb6745d0c6e8aa1fee026f206a41ebf6c8d54b23a9a3816a6c2d7ae004c9db7c436425a94aa7d3')

prepare() {
  cd "$pkgname-v$pkgver"
  cmake -Wno-dev -DSOLARUS_TESTS=OFF -DCMAKE_INSTALL_PREFIX="/usr" -DCMAKE_C_FLAGS="${CFLAGS} ${CPPFLAGS}" -DCMAKE_CXX_FLAGS="${CXXFLAGS} ${CPPFLAGS}" -DCMAKE_EXE_LINKER_FLAGS="${LDFLAGS}" .
}

build() {
  make -C "$pkgname-v$pkgver" ${MAKEFLAGS}
}

package() {
  make -C "$pkgname-v$pkgver" DESTDIR="${pkgdir}/" install
}

ShalokShalom commented on 2017-01-11 20:35 (UTC)

There is no desktop starter for the new launcher GUI

skull-y commented on 2016-08-20 22:08 (UTC)

Thanks, now it works.

BenObiWan commented on 2016-08-18 20:47 (UTC)

Please try again.

skull-y commented on 2016-08-18 13:29 (UTC)

Here the error from terminal: http://pastebin.com/Jf31uAKb And here the error from cmake logfile: http://pastebin.com/BjeW4efp I've read the error from my terminal again, should I install Qt5?