Daniel Bermond pushed to branch main at Arch Linux / Packaging / Packages / libmysofa
Commits: fa3c5f38 by Daniel Bermond at 2023-10-17T15:59:21-03:00 upgpkg: 1.3.2-1 - - - - - 2 changed files: - + .SRCINFO - PKGBUILD Changes: ===================================== .SRCINFO ===================================== @@ -0,0 +1,16 @@ +pkgbase = libmysofa + pkgdesc = C library to read HRTFs if they are stored in the AES69-2015 SOFA format + pkgver = 1.3.2 + pkgrel = 1 + url = https://github.com/hoene/libmysofa/ + arch = x86_64 + license = BSD + checkdepends = nodejs + makedepends = cmake + makedepends = cunit + depends = zlib + provides = libmysofa.so + source = https://github.com/hoene/libmysofa/archive/v1.3.2/libmysofa-1.3.2.tar.gz + sha256sums = 6c5224562895977e87698a64cb7031361803d136057bba35ed4979b69ab4ba76 + +pkgname = libmysofa ===================================== PKGBUILD ===================================== @@ -1,24 +1,24 @@ # Maintainer: Daniel Bermond <[email protected]> pkgname=libmysofa -pkgver=1.3.1 -pkgrel=2 +pkgver=1.3.2 +pkgrel=1 pkgdesc='C library to read HRTFs if they are stored in the AES69-2015 SOFA format' arch=('x86_64') url='https://github.com/hoene/libmysofa/' license=('BSD') depends=('zlib') -makedepends=('cmake' 'cunit' 'ninja') +makedepends=('cmake' 'cunit') checkdepends=('nodejs') provides=('libmysofa.so') source=("https://github.com/hoene/libmysofa/archive/v${pkgver}/${pkgname}-${pkgver}.tar.gz") -sha256sums=('a8a8cbf7b0b2508a6932278799b9bf5c63d833d9e7d651aea4622f3bc6b992aa') +sha256sums=('6c5224562895977e87698a64cb7031361803d136057bba35ed4979b69ab4ba76') build() { cmake \ + -G 'Unix Makefiles' \ -B "${pkgname}-${pkgver}/build" \ -S "${pkgname}-${pkgver}" \ - -G Ninja \ -DCMAKE_BUILD_TYPE:STRING='None' \ -DCMAKE_INSTALL_PREFIX:PATH='/usr' \ -DCODE_COVERAGE:BOOL='OFF' \ @@ -27,13 +27,10 @@ build() { } check() { - cd "${pkgname}-${pkgver}/build" - ctest --output-on-failure --stop-on-failure -j1 + ctest --test-dir "${pkgname}-${pkgver}/build" --output-on-failure --stop-on-failure } package() { DESTDIR="${pkgdir}" cmake --install "${pkgname}-${pkgver}/build" install -D -m644 "${pkgname}-${pkgver}/LICENSE" -t "${pkgdir}/usr/share/licenses/${pkgname}" } - -# vim:set sw=4 sts=-1 et: View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/libmysofa/-/commit/fa3c5f3876b8a2f13a0f021af2d273235b1c847c -- View it on GitLab: https://gitlab.archlinux.org/archlinux/packaging/packages/libmysofa/-/commit/fa3c5f3876b8a2f13a0f021af2d273235b1c847c You're receiving this email because of your account on gitlab.archlinux.org.
