diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | PKGBUILD | 15 |
2 files changed, 6 insertions, 10 deletions
diff --git a/.gitignore b/.gitignore index 3472fbde951..c222da81a9c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ src *.xz *.zip *.pkg.* +linvst-*.tar.gz linvst/ @@ -1,7 +1,7 @@ # Maintainer: Julia DeMille <me@jdemille.com> # Contributor: David <ottodavid@gmx.net> pkgname=linvst -pkgver=4.7.r11.141e405 +pkgver=4.7 pkgrel=1 license=('GPL3') pkgdesc="Windows VST2 wrapper that allows them to be used as Linux VST2s in compatible DAWs using Wine." @@ -9,20 +9,15 @@ arch=('x86_64') url="https://github.com/osxmidi/LinVst" depends=('wine') makedepends=('git') -source=('linvst::git+https://github.com/osxmidi/LinVst.git') -sha256sums=('SKIP') - -pkgver() { - cd "${pkgname}" - git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g' -} +source=('linvst-4.7.tar.gz::https://github.com/osxmidi/LinVst/archive/refs/tags/4.7.tar.gz') +sha256sums=('96cf075eebb9db4d23f6fe7327b70496320f3d751e5ec24b7ffa3e29c750c8d1') build() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/LinVst-${pkgver}" make DESTDIR="${pkgdir}" all } package() { - cd "${srcdir}/${pkgname}" + cd "${srcdir}/LinVst-${pkgver}" make DESTDIR="${pkgdir}" VST_DIR="${pkgdir}/usr/lib/vst/" install } |