From 05954f4b7181c2f527efe84445b7a2d257fc3a55 Mon Sep 17 00:00:00 2001 From: kth5 Date: Mon, 9 Dec 2024 09:54:09 +0100 Subject: [PATCH] * update fluidsynth to 2.4.0-1 --- fluidsynth/.SRCINFO | 8 ++++---- fluidsynth/PKGBUILD | 11 ++++++----- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/fluidsynth/.SRCINFO b/fluidsynth/.SRCINFO index 84c840766e..cbbf047b59 100644 --- a/fluidsynth/.SRCINFO +++ b/fluidsynth/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = fluidsynth pkgdesc = A real-time software synthesizer based on the SoundFont 2 specifications - pkgver = 2.3.7 + pkgver = 2.4.0 pkgrel = 1 url = https://www.fluidsynth.org/ arch = x86_64 @@ -30,9 +30,9 @@ pkgbase = fluidsynth provides = libfluidsynth.so provides = soundfont-synthesizer backup = etc/conf.d/fluidsynth - source = fluidsynth-2.3.7.tar.gz::https://github.com/fluidsynth/fluidsynth/archive/v2.3.7.tar.gz - sha512sums = f5fd5ddbc4d30ded258ae3d04ba5981ce8da1132c5d93faf1e8745a9d9f89c9fb3365f0447b94e0fe0e9b032c789fcbd6e647a65a50d1f76179b53a76683d004 - b2sums = b6a4fcf430f5e89a66d80faf61af3e005057f6254912a0a8af4eabd92d8b46ff9bc5a072e09eac3782f99ea26900150f5eda5eefe514a2c95f9229558ce560bb + source = fluidsynth-2.4.0.tar.gz::https://github.com/fluidsynth/fluidsynth/archive/v2.4.0.tar.gz + sha512sums = 57770597e26140011324cac14dd81aa1f5fc52ec0c256a4e16f629b81b8d477279ad714cc9d1e375d74aabb348e1436eafd06746cdf10fa29196468645bf7600 + b2sums = 9814d8ac133ab18650b7f3b6ef0cdec6da76a59ef2dd2af9471311e7e7850604376d3d135e13c5b6e01a93d70bd5f266ad9df2a270cd9f3482738bb3d8f81747 pkgname = fluidsynth depends = gcc-libs diff --git a/fluidsynth/PKGBUILD b/fluidsynth/PKGBUILD index 2952ee9761..ea345c1fa7 100644 --- a/fluidsynth/PKGBUILD +++ b/fluidsynth/PKGBUILD @@ -4,11 +4,12 @@ # Contributor: damir pkgname=fluidsynth -pkgver=2.3.7 +pkgver=2.4.0 pkgrel=1 pkgdesc="A real-time software synthesizer based on the SoundFont 2 specifications" arch=(x86_64 powerpc64le powerpc64 powerpc riscv64) url="https://www.fluidsynth.org/" +_url="https://github.com/fluidsynth/fluidsynth" license=(LGPL-2.1-or-later) groups=(pro-audio) depends=( @@ -37,9 +38,9 @@ provides=( soundfont-synthesizer ) backup=(etc/conf.d/$pkgname) -source=($pkgname-$pkgver.tar.gz::https://github.com/$pkgname/$pkgname/archive/v$pkgver.tar.gz) -sha512sums=('f5fd5ddbc4d30ded258ae3d04ba5981ce8da1132c5d93faf1e8745a9d9f89c9fb3365f0447b94e0fe0e9b032c789fcbd6e647a65a50d1f76179b53a76683d004') -b2sums=('b6a4fcf430f5e89a66d80faf61af3e005057f6254912a0a8af4eabd92d8b46ff9bc5a072e09eac3782f99ea26900150f5eda5eefe514a2c95f9229558ce560bb') +source=($pkgname-$pkgver.tar.gz::$_url/archive/v$pkgver.tar.gz) +sha512sums=('57770597e26140011324cac14dd81aa1f5fc52ec0c256a4e16f629b81b8d477279ad714cc9d1e375d74aabb348e1436eafd06746cdf10fa29196468645bf7600') +b2sums=('9814d8ac133ab18650b7f3b6ef0cdec6da76a59ef2dd2af9471311e7e7850604376d3d135e13c5b6e01a93d70bd5f266ad9df2a270cd9f3482738bb3d8f81747') build() { local cmake_options=( @@ -80,5 +81,5 @@ package() { DESTDIR="$pkgdir" cmake --install build install -vDm 644 build/$pkgname.service -t "$pkgdir/usr/lib/systemd/user/" install -vDm 644 build/$pkgname.conf "$pkgdir/etc/conf.d/$pkgname" - install -vDm 644 $pkgname-$pkgver/{AUTHORS,ChangeLog,{CONTRIBUTING,README}.md,THANKS,TODO} -t "$pkgdir/usr/share/doc/$pkgname/" + install -vDm 644 $pkgname-$pkgver/{AUTHORS,{CONTRIBUTING,README}.md,THANKS,TODO} -t "$pkgdir/usr/share/doc/$pkgname/" }