Package Details: sid-git r124.fe0647d-2

Git Clone URL: https://aur.archlinux.org/sid-git.git (read-only, click to copy)
Package Base: sid-git
Description: Emulates MOS Technology SID audio chip (used in Commodore 64) as a VST, VST3, lv2, Standalone
Upstream URL: http://socalabs.com/
Licenses: GPL-3.0-only
Groups: socalabs-vst-suite
Submitter: yustin
Maintainer: yustin
Last Packager: yustin
Votes: 1
Popularity: 0.000000
First Submitted: 2024-06-06 22:37 (UTC)
Last Updated: 2024-06-06 22:37 (UTC)

Latest Comments

« First ‹ Previous 1 2

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"
}