blob: a880163dc8401bc8f1ef4632aa6ffff6a7f3a2d1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: nyxkn <dev@nyxkn.net>
pkgname=chowphaser-bin
pkgdesc="Phaser effect based loosely on the Schulte Compact Phasing 'A'"
pkgver=1.1.1
pkgrel=1
arch=('x86_64')
url="https://chowdsp.com/"
license=('BSD')
groups=('vst3-plugins' 'lv2-plugins' 'pro-audio')
conflicts=()
depends=('libglvnd' 'freetype2' 'alsa-lib')
source=("https://github.com/jatinchowdhury18/ChowPhaser/releases/download/v$pkgver/ChowPhaser-Linux-x64-$pkgver.deb")
sha256sums=('554ef220e96ea2c355e8ed8aa0c94c8bbcc281b5ce8069a12865a75ef6737889')
package() {
rm -rf usr data.tar.xz control.tar.xz debian-binary
ar x "ChowPhaser-Linux-x64-$pkgver.deb"
tar xf data.tar.xz
cp -r usr "$pkgdir/"
}
|