blob: c31f2005c387908f528b04d094fedbb94758d6ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: David Holland <info (at) dustvoice.de>
# You have to
# login to https://backstage.renoise.com
# download your copy
# place it into same DIR as this file
pkgname="tal-sampler"
pkgver="3.2.9"
pkgrel="1"
pkgdesc="A sampler VST plugin from TAL"
arch=("x86_64")
url="https://tal-software.com/products/tal-sampler"
license=()
depends=()
optdepends=()
makedepends=()
options=("!strip")
conflicts=()
source=("file://TAL-Sampler_64_linux.zip")
md5sums=('SKIP')
prepare() {
bsdtar xf "$srcdir/TAL-Sampler_64_linux.zip"
}
package() {
install -Dm 755 "TAL-Sampler.so" "$pkgdir/usr/lib/vst/tal-sampler.vst/TAL-Sampler.so"
}
|