Package Details: sid-vst-git r110.845782d-1

Git Clone URL: https://aur.archlinux.org/sid-vst-git.git (read-only, click to copy)
Package Base: sid-vst-git
Description: Emulates MOS Technology SID audio chip (used in Commodore 64) as a VST
Upstream URL: http://socalabs.com/
Keywords: chiptune music plugin synth
Licenses: LGPL
Groups: socalabs-vst-suite
Submitter: prg
Maintainer: yustin
Last Packager: yustin
Votes: 1
Popularity: 0.000000
First Submitted: 2018-01-08 20:26 (UTC)
Last Updated: 2023-05-07 17:23 (UTC)

Latest Comments

yustin commented on 2023-05-07 17:42 (UTC)

added lv2 accidently :D

parodia commented on 2020-09-27 09:17 (UTC)

i just tried it - it is broken - the packager needs to fix it. plugin_sdk repo is empty

[code] Switched to a new branch 'makepkg' -> Creating working copy of plugin_sdk git repo... Cloning into 'plugin_sdk'... done. Switched to a new branch 'makepkg' ==> Starting prepare()... mv: target 'plugin/JuceLibraryCode/.' is not a directory ==> ERROR: A failure occurred in prepare(). Aborting... :: failed to verify integrity or prepare sid-vst-git package [/code]

milkii commented on 2019-07-01 21:48 (UTC)

partial fix pushed. to tired atm to fix the include paths though.

milkii commented on 2019-06-21 13:47 (UTC)

https://github.com/FigBug/SID/issues/1#issuecomment-503336851 - if anyone wants to roll a fix, please stick it in a comment here or ping me on irc

milkii commented on 2018-12-09 01:03 (UTC)

danboid; dep. added, thanks :)

danboid commented on 2018-12-08 12:34 (UTC)

Maybe ttf-ms-fonts should be added to the dependencies for this because unless you have the Verdana font installed (which is part of ttf-ms-fonts), the plugin UI text doesn't get displayed.

milkii commented on 2018-08-15 13:21 (UTC)

All good, I don't know if you still use it but I'll add you as a co-maintainer anyway cos you're around n it's not gonna cause any harm :)

prg commented on 2018-08-15 13:18 (UTC)

Hi milkmiruku! Feel free to adopt this package. Sorry I didn't see this comment earlier!

milkii commented on 2018-06-01 00:05 (UTC)

broken atm. the following works though;

# Maintainer: Lukas Sabota <lukas _at_ lwsabota _dot_ com>
# Contributer: Lukas Sabota <lukas _at_ lwsabota _dot_ com>
pkgname=sid-vst-git
_gitbase=SID
pkgver=r33.0fe05e2
pkgrel=1
pkgdesc="Emulates MOS Technology SID audio chip (used in Commodore 64) as a VST"
arch=('i686' 'x86_64')
url="http://socalabs.com/"
license=('LGPL')
groups=('socalabs-vst-suite')
depends=('mesa')
makedepends=('git')
source=('SID::git+https://github.com/FigBug/SID.git'
                'dRowAudio::git+https://github.com/FigBug/drowaudio.git#commit=3a1e6eb75681b166c055c501a2ed4a8df8a44df0'
                'slCommon::git+https://github.com/FigBug/slCommon.git#commit=b49d31c4f2f131506fe5ac53f2ac6e47b3ee109b'
    'gin::git+https://github.com/FigBug/Gin'
                'JUCE::git+https://github.com/WeAreROLI/JUCE.git#branch=develop')
# Note: This package requires features in the develop branch of JUCE
# This package can likely be moved to depend on the juce AUR package
# after an upstream JUCE release.
# FYI: This can be accomplished by symlinking /opt/JUCE to $srcdir/JUCE
# in the future.
md5sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')

pkgver() {
        cd "$srcdir/$_gitbase"
        printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

prepare() {
        cd "$srcdir/$_gitbase"
        # Workaround for SSH-only configured submodule remotes
        cd modules
        rm -rf dRowAudio slCommon
  ln -s ../../slCommon ./

        cd "$srcdir/$_gitbase"
  cd plugin/JuceLibraryCode
  mv ../../../JUCE/modules/* .
  ln -s ../../../dRowAudio/module/dRowAudio dRowAudio
  ln -s ../../../gin/modules/gin gin
}

build() {
        cd "$srcdir/$_gitbase/plugin/Builds/LinuxMakefile"
        make
}

package() {
        install -D -m644 "$srcdir/$_gitbase/plugin/Builds/LinuxMakefile/build/$_gitbase.so" "$pkgdir/usr/lib/vst/$_gitbase.so"
}