author | David Runge
<dvzrv@archlinux.org> 2022-05-20 17:32:24 UTC |
committer | David Runge
<dvzrv@archlinux.org> 2022-05-20 17:32:24 UTC |
parent | c544ef3868637f8c069b79087d59a28856c71aab |
PKGBUILD | +26 | -25 |
diff --git a/PKGBUILD b/PKGBUILD index 2ee45ac..22af37d 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,25 @@ # Maintainer: David Runge <dvzrv@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 @@ b2sums=('SKIP' 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 @@ prepare() { } 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" }