soundtouch: adopted, new source url, tarball shasum changed

This commit is contained in:
John McQuah 2023-03-02 19:29:43 -05:00
parent e23c31557f
commit 2754555360
2 changed files with 10 additions and 9 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF39Ak5uEq++x+fJYr6FG6z6bz6qQbfKYw592eRSDJvhKmrL3Sp6ZWcM7Z7Z2KJMu78/TPMVrZywCxgBDkKHgSyw4=
SHA256 (Pkgfile) = c8bfad3d3201fd8b3536e0aea5f2f9a507986fd3020c7df89d53496de0331e47
RWSagIOpLGJF33oseu29dwxOPKEW/xMJM80eaSG0yHiA0E/u5ijneDzeKS6jkxhzDRWMDl2wrrPNTDkxSmeSTWBgkFrCXahQqg0=
SHA256 (Pkgfile) = d63b90b1a76ac99bee1fc3b694f770ff690f1ccfc130a6abc8bde237c7ba0ef8
SHA256 (.footprint) = 8803768504651852cb4fb7fdc40d75fc00b4feffd08017b773da7d2053bf08b9
SHA256 (soundtouch-2.3.2.tar.gz) = 3bde8ddbbc3661f04e151f72cf21ca9d8f8c88e265833b65935b8962d12d6b08
SHA256 (soundtouch-2.3.2.tar.gz) = ed714f84a3e748de87b24f385ec69d3bdc51ca47b7f4710d2048b84b2761e7ff

View File

@ -1,12 +1,13 @@
# Description: Audio processing library for changing tempo, pitch and playback rates.
# URL: https://www.surina.net/soundtouch/
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: cmake ninja
# URL: https://codeberg.org/soundtouch/soundtouch
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on:
name=soundtouch
version=2.3.2
release=1
source=(https://www.surina.net/$name/$name-$version.tar.gz)
source=(https://codeberg.org/$name/$name/archive/$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
cmake -S $name -B build -G Ninja \
@ -16,6 +17,6 @@ build() {
-D BUILD_SHARED_LIBS=ON \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -DNDEBUG"
cmake --build build
DESTDIR=$PKG cmake --install build
ninja -C build
DESTDIR=$PKG ninja -C build install
}