soundtouch: 2.3.2 -> 2.3.3

This commit is contained in:
John McQuah 2024-04-13 11:46:03 +00:00
parent 7a7f717a95
commit f37d4eba26
3 changed files with 15 additions and 15 deletions

View File

@ -17,7 +17,7 @@ drwxr-xr-x root/root usr/lib/cmake/SoundTouch/
-rw-r--r-- root/root usr/lib/cmake/SoundTouch/SoundTouchTargets-release.cmake
-rw-r--r-- root/root usr/lib/cmake/SoundTouch/SoundTouchTargets.cmake
lrwxrwxrwx root/root usr/lib/libSoundTouch.so -> libSoundTouch.so.2
lrwxrwxrwx root/root usr/lib/libSoundTouch.so.2 -> libSoundTouch.so.2.3.2
-rwxr-xr-x root/root usr/lib/libSoundTouch.so.2.3.2
lrwxrwxrwx root/root usr/lib/libSoundTouch.so.2 -> libSoundTouch.so.2.3.3
-rwxr-xr-x root/root usr/lib/libSoundTouch.so.2.3.3
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/soundtouch.pc

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3zIHZBOjg5vD50cBNLZ6tHphlfNN6flbwo9GkJ3Lfb0ayhWnuqZKRB1jJ+K6364mdKzY9nBPQRpxXMVIVouuogs=
SHA256 (Pkgfile) = d63b90b1a76ac99bee1fc3b694f770ff690f1ccfc130a6abc8bde237c7ba0ef8
SHA256 (.footprint) = 8803768504651852cb4fb7fdc40d75fc00b4feffd08017b773da7d2053bf08b9
SHA256 (soundtouch-2.3.2.tar.gz) = 714c8626001bb3ef291a9af9eadc0f7b382a0b23506efebc516b63b170b4da56
RWSagIOpLGJF3+TOBI7oxa+6Zmxxn76OJsDOn7sVkAxR2VqeRWhDoGvCwzQkeBkCy2S+LcI8dliGMAIiUs6/tj7jdm9OMLghBgA=
SHA256 (Pkgfile) = 370f1d0273dba8c68d98f8a38338cb050753a18330ca79f21b39d0f42cb62615
SHA256 (.footprint) = f46a0ffb1237cb76cad504328f9cdd76bed5a152bd6d7ad2d1e29a17d712c2da
SHA256 (soundtouch-2.3.3.tar.gz) = 43b23dfac2f64a3aff55d64be096ffc7b73842c3f5665caff44975633a975a99

View File

@ -4,19 +4,19 @@
# Depends on:
name=soundtouch
version=2.3.2
version=2.3.3
release=1
source=(https://codeberg.org/$name/$name/archive/$version.tar.gz)
renames=($name-$version.tar.gz)
build() {
cmake -S $name -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_INSTALL_LIBDIR=lib \
-D BUILD_SHARED_LIBS=ON \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -DNDEBUG"
cmake -S $name -B build -G Ninja \
-D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_INSTALL_LIBDIR=lib \
-D BUILD_SHARED_LIBS=ON \
-D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS -DNDEBUG"
ninja -C build
DESTDIR=$PKG ninja -C build install
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
}