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-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!