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

David Runge dvzrv at gemini.archlinux.org
Fri May 20 17:32:25 UTC 2022


    Date: Friday, May 20, 2022 @ 17:32:24
  Author: dvzrv
Revision: 1209417

upgpkg: vst3sdk 3.7.5_build_44-1: Upgrade to 3.7.5_build_44.

Remove unneeded quotes and curly braces.

Modified:
  vst3sdk/trunk/PKGBUILD

----------+
 PKGBUILD |   51 ++++++++++++++++++++++++++-------------------------
 1 file changed, 26 insertions(+), 25 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2022-05-20 16:51:09 UTC (rev 1209416)
+++ PKGBUILD	2022-05-20 17:32:24 UTC (rev 1209417)
@@ -1,24 +1,25 @@
 # Maintainer: David Runge <dvzrv at archlinux.org>
 
 pkgname=vst3sdk
-pkgver=3.7.4_build_25
-_commit=d821ee66d0699386f29c28edd9a03c780458087e # 3.7.4_build_25
+pkgver=3.7.5_build_44
+_commit=56e4b2a644be164c5d324e8bc9de55b964b0f102  # 3.7.5_build_44
 pkgrel=1
 pkgdesc="VST 3 Plug-In SDK"
-arch=('any')
+arch=(any)
 url="https://github.com/steinbergmedia/vst3sdk"
-license=('GPL3' 'BSD')
-makedepends=('git')
+license=(GPL3 BSD)
+makedepends=(git)
 # upstream does not provide proper tarballs:
 # https://github.com/steinbergmedia/vst3sdk/issues/65
-source=("git+https://github.com/steinbergmedia/${pkgname}#commit=${_commit}"
-        "git+https://github.com/steinbergmedia/vst3_base"
-        "git+https://github.com/steinbergmedia/vst3_cmake"
-        "git+https://github.com/steinbergmedia/vst3_doc"
-        "git+https://github.com/steinbergmedia/vst3_pluginterfaces"
-        "git+https://github.com/steinbergmedia/vst3_public_sdk"
-        "git+https://github.com/steinbergmedia/vstgui"
-        "${pkgname}.pc"
+source=(
+  git+https://github.com/steinbergmedia/$pkgname#commit=$_commit
+  git+https://github.com/steinbergmedia/vst3_base
+  git+https://github.com/steinbergmedia/vst3_cmake
+  git+https://github.com/steinbergmedia/vst3_doc
+  git+https://github.com/steinbergmedia/vst3_pluginterfaces
+  git+https://github.com/steinbergmedia/vst3_public_sdk
+  git+https://github.com/steinbergmedia/vstgui
+  $pkgname.pc
 )
 sha512sums=('SKIP'
             'SKIP'
@@ -40,8 +41,9 @@
 prepare() {
   # upstream does not provide a pkg-config integration:
   # https://github.com/steinbergmedia/vst3sdk/issues/68
-  sed -e "s/VERSION/${pkgver}/" -i "${pkgname}.pc"
-  cd "$pkgname"
+  sed -e "s/VERSION/$pkgver/" -i $pkgname.pc
+
+  cd $pkgname
   git submodule init
   git config submodule.base.url ../vst3_base
   git config submodule.cmake.url ../vst3_cmake
@@ -53,14 +55,13 @@
 }
 
 package() {
-  cd "$pkgbase"
-  install -vDm 644 "../${pkgname}.pc" -t "${pkgdir}/usr/lib/pkgconfig/"
-  find base -type f \( -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "${pkgdir}/usr/include/${pkgname}/"{} \;
-  find pluginterfaces \( -type f -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "${pkgdir}/usr/include/${pkgname}/"{} \;
-  find public.sdk -type f \( -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "${pkgdir}/usr/include/${pkgname}/"{} \;
-  install -vDm 644 README.md -t "${pkgdir}/usr/share/doc/${pkgname}"
-
-  install -vDm 644 LICENSE.txt -t "${pkgdir}/usr/share/licenses/${pkgname}/"
-  install -vDm 644 base/LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.base.txt"
-  install -vDm 644 public.sdk/LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.public.sdk.txt"
+  cd $pkgbase
+  install -vDm 644 ../$pkgname.pc -t "$pkgdir/usr/lib/pkgconfig/"
+  find base -type f \( -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "$pkgdir/usr/include/$pkgname/"{} \;
+  find pluginterfaces \( -type f -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "$pkgdir/usr/include/$pkgname/"{} \;
+  find public.sdk -type f \( -iname "*.cpp" -or -iname "*.h" \) -exec install -vDm 644 {} "$pkgdir/usr/include/$pkgname/"{} \;
+  install -vDm 644 README.md -t "$pkgdir/usr/share/doc/$pkgname"
+  install -vDm 644 LICENSE.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
+  install -vDm 644 base/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.base.txt"
+  install -vDm 644 public.sdk/LICENSE.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.public.sdk.txt"
 }



More information about the arch-commits mailing list