David Runge pushed to branch main at Arch Linux / Packaging / Packages / vst3sdk
Commits: a96abbe6 by David Runge at 2024-02-21T12:20:29+01:00 Add nvchecker integration Signed-off-by: David Runge <[email protected]> - - - - - 7e9562a5 by David Runge at 2024-02-21T12:23:54+01:00 Add a pkgver() function as we are building from git sources Signed-off-by: David Runge <[email protected]> - - - - - 2 changed files: - + .nvchecker.toml - PKGBUILD Changes: ===================================== .nvchecker.toml ===================================== @@ -0,0 +1,5 @@ +[vst3sdk] +source = "git" +git = "https://github.com/steinbergmedia/vst3sdk" +prefix = "v" +include_regex = "v([\\d.]+)_build_([\\d]+)" ===================================== PKGBUILD ===================================== @@ -46,6 +46,11 @@ b2sums=('SKIP' 'a7cf564f31c471440310c3e3a11eac143ad1df100c8bb7bde9096b83711846878b4842742b050cc293b337b6284d28959ef3446d2be5337a74faac7bfcf74206' 'e39e1353fdc22f7d93b6f89f8242fafddd56422a03df1cb26e81a3874456c49029a3726b43223fe21231eff6fe240e1216f3dca36a0e5297c9c0d43ab390bcd9') +pkgver() { + cd $pkgname + git describe --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g;s/v//g' +} + prepare() { # upstream does not provide a pkg-config integration: # https://github.com/steinbergmedia/vst3sdk/issues/68 View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/vst3sdk/-/compare/cab3244b7c3d2b61098423e0e7bc9e779aa44d05...7e9562a5e188520d160a6a6d339c23ada73bcfd1 -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/vst3sdk/-/compare/cab3244b7c3d2b61098423e0e7bc9e779aa44d05...7e9562a5e188520d160a6a6d339c23ada73bcfd1 You're receiving this email because of your account on gitlab.archlinux.org.
