blob: 49cb90eef67df50dfd6468c07294f456074febd1 (
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
|
# Maintainer: Pace Willisson <pace@alum.mit.edu>
pkgname=unfatarians-studio
_tag=cf91fcf2e1ae4428a92a5f5eb2409aad47631302
pkgver=6
pkgrel=1
pkgdesc="dockerized ardour6 with a rich set of plugins"
arch=('any')
url="https://codeberg.org/pacew/unfatarians-studio"
license=('GPL')
depends=('docker' 'pipewire')
source=("git+https://codeberg.org/pacew/unfatarians-studio.git")
md5sums=('SKIP')
prepare() {
cd $pkgname
git checkout --quiet $_tag
}
build() {
cd $pkgname
make
}
package() {
cd $pkgname
make DESTDIR="$pkgdir/" install
}
# git clean -fdx
|