Package Details: gsequencer 6.10.1-1

Git Clone URL: https://aur.archlinux.org/gsequencer.git (read-only, click to copy)
Package Base: gsequencer
Description: Advanced Gtk+ Sequencer
Upstream URL: https://nongnu.org/gsequencer
Licenses: GPL3
Provides: libags.so, libags_audio.so, libags_gui.so, libags_server.so, libags_thread.so, libgsequencer.so
Submitter: jkraehemann
Maintainer: jkraehemann
Last Packager: jkraehemann
Votes: 0
Popularity: 0.000000
First Submitted: 2018-04-30 01:59 (UTC)
Last Updated: 2024-05-03 13:14 (UTC)

Dependencies (50)

Required by (0)

Sources (1)

Latest Comments

jkraehemann commented on 2024-04-26 17:28 (UTC)

@johnsane might be you are missing gtk4 dependency. I have just built successfully in a chroot.

johnsane commented on 2024-04-26 15:33 (UTC) (edited on 2024-04-26 15:33 (UTC) by johnsane)

Does not build. libgdk-4.so missing.

dvzrv commented on 2020-04-04 22:05 (UTC)

@jkraehemann: I've spent some time and made your PKGBUILD better:

pkgname=gsequencer
pkgver=3.2.4
pkgrel=4
pkgdesc="Advanced Gtk+ Sequencer"
arch=('x86_64')
url="https://nongnu.org/gsequencer"
license=('GPL3')
depends=('cairo' 'gdk-pixbuf2' 'glibc' 'harfbuzz' 'libx11' 'libxml2' 'zlib')
makedepends=('alsa-lib' 'atk' 'dssi' 'fftw' 'glib2' 'gobject-introspection'
'gtk3' 'gtk-doc' 'jack' 'ladspa' 'libinstpatch' 'libpulse' 'libsndfile'
'libsoup' 'libutil-linux' 'lv2' 'pango' 'webkit2gtk')
checkdepends=('cunit' 'xorg-server-xvfb')
provides=('libgsequencer.so' 'libags_thread.so' 'libags_server.so'
'libags_gui.so' 'libags_audio.so' 'libags.so')
source=("https://download.savannah.gnu.org/releases/gsequencer/3.2.x/$pkgname-$pkgver.tar.gz")
sha512sums=('64ce01098abaa99f9f8797229adc9f5740bad92272ba4fca8816ad94bb9b3fe3d1e438b4c94ac615db2d15f8ea13e42839c950f01e619ab65395b95c3d83f6a2')
# validpgpkeys=('ECD34CA97E55AE2AF14FBE9F25B4B3AE3388A17A') # key not available on key servers

prepare() {
  cd "$pkgname-$pkgver"
  autoreconf -vfi
}

build() {
  cd "$pkgname-$pkgver"
  export HTMLHELP_XSL=/usr/share/xml/docbook/xsl-stylesheets-1.79.2/htmlhelp/htmlhelp.xsl
  ./configure --prefix='/usr' \
              --docdir='/usr/share/doc/gsequencer-doc' \
              --enable-gtk-doc \
              --enable-gtk-doc-html \
              --enable-single-docdir
  make
  make html
}

check() {
  cd "$pkgname-$pkgver"
  xvfb-run make -k check
}

package() {
  depends+=('libasound.so' 'libatk-1.0.so' 'libfftw3.so' 'libgio-2.0.so'
  'libglib-2.0.so' 'libgmodule-2.0.so' 'libgobject-2.0.so' 'libgthread-2.0.so'
  'libgtk-3.so' 'libgdk-3.so' 'libinstpatch-1.0.so' 'libjack.so'
  'libjavascriptcoregtk-4.0.so' 'libpango-1.0.so' 'libpangocairo-1.0.so'
  'libpulse.so' 'libpulse-mainloop-glib.so' 'libsndfile.so' 'libsoup-2.4.so'
  'libuuid.so' 'libwebkit2gtk-4.0.so')
  cd "$pkgname-$pkgver"
  make DESTDIR="$pkgdir/" install
  make DESTDIR="$pkgdir/" install-html
}

My suggestion would be to install devtools and run extra-x86_64-build for building this package and in case you change anything in the shared library dependency setup to use find-libdeps and find-libprovides on the built package file.