Package Details: stegosaurus-lv2 0.4.0-1

Git Clone URL: https://aur.archlinux.org/stegosaurus-lv2.git (read-only, click to copy)
Package Base: stegosaurus-lv2
Description: lv2 drum synthersizer without sampling
Upstream URL: https://sourceforge.net/projects/stegosaurus-lv2
Keywords: audio drums lv2 plugins
Licenses: BSD
Submitter: bergentroll
Maintainer: None
Last Packager: bergentroll
Votes: 1
Popularity: 0.000000
First Submitted: 2016-06-26 17:04 (UTC)
Last Updated: 2023-07-14 11:04 (UTC)

Pinned Comments

bergentroll commented on 2024-01-15 10:30 (UTC) (edited on 2024-01-16 09:53 (UTC) by bergentroll)

There is an absolutely new version with no python2 dependency. But it has few issues to pack: - make install ignores any prefix; - make install writes to home directory (actually an old recipe did also); - release actually has no any version tag.

I'll keep to lazy watch on changes or someone may adapt this package, because I am not using it (therefore found the plugin interesting).

pkgname='stegosaurus-lv2'
pkgver='0.4.?' # FIXME
pkgrel=1
pkgdesc='LV2 drum synthersizer without sampling'
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/$pkgname"
license=('GPL2')
depends=('lv2' 'cairo')
source=("https://sourceforge.net/projects/$pkgname/files/stegosaurus.tar.gz")
md5sums=('8ee1d22d030a1ed6e89af9f4e33b9efa')

build() {
    cd stegosaurus
    make
}

package() {
    cd stegosaurus
    # FIXME make ignores prefix
    #make DESTDIR="$pkgdir/" install
}

Latest Comments

bergentroll commented on 2024-08-06 11:27 (UTC) (edited on 2024-08-06 11:27 (UTC) by bergentroll)

trrg, thank you for notifying. There is indeed new code. But there are still some obstacles:

  • No actual version release.
  • Makefile still utilizes /usr.
  • Code tries to be linked with some pugl-upstream, which is missing in repo and documentation (seems it is something related to Pugl GUI lib).

If you have ideas, how to build the plugin, feel free to adopt the package or send requests.

trrg commented on 2024-08-04 19:43 (UTC)

It looks like Thunderox has moved to gitlab and have contiuned the development there. Not sure if the sourceforge mirror is out of date. https://gitlab.com/thunderox_plugins/stegosaurus

bergentroll commented on 2024-01-15 10:30 (UTC) (edited on 2024-01-16 09:53 (UTC) by bergentroll)

There is an absolutely new version with no python2 dependency. But it has few issues to pack: - make install ignores any prefix; - make install writes to home directory (actually an old recipe did also); - release actually has no any version tag.

I'll keep to lazy watch on changes or someone may adapt this package, because I am not using it (therefore found the plugin interesting).

pkgname='stegosaurus-lv2'
pkgver='0.4.?' # FIXME
pkgrel=1
pkgdesc='LV2 drum synthersizer without sampling'
arch=('i686' 'x86_64')
url="https://sourceforge.net/projects/$pkgname"
license=('GPL2')
depends=('lv2' 'cairo')
source=("https://sourceforge.net/projects/$pkgname/files/stegosaurus.tar.gz")
md5sums=('8ee1d22d030a1ed6e89af9f4e33b9efa')

build() {
    cd stegosaurus
    make
}

package() {
    cd stegosaurus
    # FIXME make ignores prefix
    #make DESTDIR="$pkgdir/" install
}

bergentroll commented on 2022-08-29 13:25 (UTC)

I failed to built the latest on a fresh Archlinux. If someone knows how to, you are welcome.

https://sourceforge.net/p/stegosaurus-lv2/tickets/1/

bergentroll commented on 2016-09-21 16:20 (UTC)

Fixed, thank you!

sekret commented on 2016-09-20 16:53 (UTC)

Your package needs several improvements, right now it doesn't work: 1. Change arch to arch=('i686' 'x86_64') 2. Add 'cairo' to depends 3. Use ./waf configure --prefix=$pkgdir/usr in the build function, /usr/local shouldn't be used for packages!