• Welcome to the Pipe Organ Forum! This is a part of the open community Magle International Music Forums focused on pipe organs (also known as "church organs"), organists, organ music and related topics.

    This forum is intended to be a friendly place where technically advanced organists and beginners (or even non-organists) can feel comfortable having discussions and asking questions. We learn by reading and asking questions, and it is hoped that the beginners (or non-organists) will feel free to ask even the simplest questions, and that the more advanced organists will patiently answer these questions. On the other hand, we encourage complex, technical discussions of technique, music, organ-building, etc. The opinions and observations of a diverse group of people from around the world should prove to be interesting and stimulating to all of us.

    As pipe organ discussions can sometimes become lively, it should be pointed out that this is an open forum. Statements made here are the opinion of the poster, and not necessarily that of the forum itself, its administrator, or its moderators.

    In order to post a new topic - or reply to existing ones - you may join and become a member by clicking on Register New User. It's completely free and only requires a working email address (in order to confirm your registration - it will never be given away!). We strive to make this a friendly and informative forum for anyone interested in pipe organs and organ music.

    (Note: If you wish to link to and promote your own website please read this thread first.)

    Many kind regards
    smile.gif

    Frederik Magle
    Administrator

    Krummhorn
    Co-Administrator

Grandorgue Linux SVN build problem

edenyard

New member
After a few month's absence from the GO scene, I set about building the latest GO version from SVN on Linux. Version 1324 appears to have been retrieved from SVN.

Once the build process is running, I get lots and lots of error messages during configuration that look like this:

Code:
[COLOR=#000000]CMake Error at demo/CMakeLists.txt:18 (ADD_CUSTOM_COMMAND):
  add_custom_command called with OUTPUT containing a "#".  This character is
  not allowed.
Call Stack (most recent call first):
  demo/CMakeLists.txt:26 (COPY_DEMO)[/COLOR]

Finally, I get this before the process shuts down:

Code:
[COLOR=#000000]--   Project                     : GrandOrgue
--   Description                 : GrandOrgue - OpenSource Virtual Pipe Organ Software
--   Version                     : 0.3.1.0
-- ============================================================================
--  
-- Configuring incomplete, errors occurred!
==> ERROR: A failure occurred in build().
    Aborting...
[/COLOR]

Just in case it's relevant, this is the Arch Linux PKGBUILD that I'm running to download from SVN and build:

Code:
pkgname=grandorgue-svn
pkgver=1324
pkgrel=1
pkgdesc="A free pipe organ sampler compatible with Hauptwerk v1 samples"
arch=('i686' 'x86_64')
url="http://ourorgan.sf.net"
license=('GPL')
groups=('multimedia')
depends=('wxgtk' 'jack')
makedepends=('cmake' 'subversion' 'wxgtk' 'jack' 'docbook-xsl')
provides=('grandorgue')
conflicts=('grandorgue')
replaces=()
backup=()
options=()
install=
source=()
noextract=()
md5sums=() #generate with 'makepkg -g'

_svntrunk="http://svn.code.sf.net/p/ourorgan/svn/trunk"
_svnmod="trunk"

build() {
  cd "$srcdir"
  msg "Connecting to SVN server...."

  if [[ -d "$_svnmod/.svn" ]]; then
    (cd "$_svnmod" && svn up -r "$pkgver")
  else
    svn co "$_svntrunk" --config-dir ./ "$_svnmod"
  fi

  msg "SVN checkout done or server timeout"
  msg "Starting build..."

  rm -rf "$srcdir/$_svnmod-build"
  mkdir "$srcdir/$_svnmod-build"
  cd "$srcdir/$_svnmod-build"

  #
  # BUILD HERE
  #
###  cmake -DUNICODE=1 -DCMAKE_BUILD_TYPE=Release -G "Unix Makefiles" "$srcdir/$_svnmod"
  cmake -DUNICODE=1 -DCMAKE_BUILD_TYPE=Release -DDOCBOOK_DIR=/usr/share/xml/docbook/xsl-stylesheets -G "Unix Makefiles" "$srcdir/$_svnmod"
}

package() {
  cd "$srcdir/$_svnmod-build"
  make DESTDIR="$pkgdir/" install
}

# vim:set ts=2 sw=2 et:

Please can I have some advice as to why the build is failing and what I need to do to fix it?

Many thanks,
Gerald.
 
Top