[arch-commits] Commit in calf/trunk (PKGBUILD)

Alexander Rødseth arodseth at archlinux.org
Tue Dec 22 14:35:20 UTC 2020


    Date: Tuesday, December 22, 2020 @ 14:35:20
  Author: arodseth
Revision: 782009

Use GTK3

Tested in Ardour

Modified:
  calf/trunk/PKGBUILD

----------+
 PKGBUILD |   31 +++++++++++++++----------------
 1 file changed, 15 insertions(+), 16 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2020-12-22 14:19:15 UTC (rev 782008)
+++ PKGBUILD	2020-12-22 14:35:20 UTC (rev 782009)
@@ -4,36 +4,35 @@
 
 pkgname=calf
 pkgver=0.90.3
-pkgrel=2
+pkgrel=3
 pkgdesc='LV2 plug-in suite and standalone Jack host'
-arch=('x86_64')
+arch=(x86_64)
 url="https://calf-studio-gear.org"
-groups=('lv2-plugins' 'pro-audio')
-license=('LGPL2.1')
-depends=('fftw' 'fluidsynth' 'gtk2')
-makedepends=('lv2')
+groups=(lv2-plugins pro-audio)
+license=(LGPL2.1)
+depends=(fftw fluidsynth gtk3)
+makedepends=(lv2)
 source=("https://calf-studio-gear.org/files/$pkgname-$pkgver.tar.gz")
 sha256sums=('e32bc23fb68f88729bdef361614fd9ac38627c774c35cd3c4eb611fca887a49f')
 
 prepare(){
-  cd "$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   autoreconf -vfi
 }
 
 build() {
-  cd "$pkgname-$pkgver"
-  ./configure --prefix=/usr \
-              --with-lv2 \
-              --enable-experimental \
-              --enable-sse
+  cd $pkgname-$pkgver
+  ./configure \
+    --enable-experimental \
+    --enable-sse \
+    --prefix=/usr \
+    --with-lv2
   make
 }
 
 package() {
-  cd "$pkgname-$pkgver"
+  cd $pkgname-$pkgver
   make DESTDIR="$pkgdir" install
   install -vDm 644 {AUTHORS,ChangeLog,README} \
-    -t "${pkgdir}/usr/share/doc/${pkgname}"
+    -t "$pkgdir/usr/share/doc/$pkgname"
 }
-
-# vim: ts=2 sw=2 et:



More information about the arch-commits mailing list