-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPKGBUILD
More file actions
31 lines (27 loc) · 796 Bytes
/
PKGBUILD
File metadata and controls
31 lines (27 loc) · 796 Bytes
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
31
# Maintainer: OSAMC <https://github.com/osam-cologne/archlinux-proaudio>
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de>
pkgname=mclk.lv2
pkgver=0.2.3
pkgrel=1
pkgdesc='A MIDI clock and realtime-message generator LV2 plugin'
arch=(x86_64 aarch64)
url='https://github.com/x42/mclk.lv2'
license=(GPL2)
groups=(lv2-plugins pro-audio)
depends=(glibc)
makedepends=(lv2)
checkdepends=(lv2lint)
source=("$pkgname-$pkgver.tar.gz::https://github.com/x42/$pkgname/archive/v$pkgver.tar.gz")
sha256sums=('13140a27f022845374df5f3683fa1be15792fded01cde9540ab3b418c1628774')
build() {
cd $pkgname-$pkgver
make
}
check() {
cd $pkgname-$pkgver
lv2lint -Mpack -I build "http://gareus.org/oss/lv2/mclk"
}
package() {
cd $pkgname-$pkgver
make PREFIX=/usr DESTDIR="$pkgdir/" install
}