fix formatting issue

This commit is contained in:
arancormonk 2025-12-10 10:28:35 -06:00
parent 5efb262a8d
commit 749ae4a5ad
No known key found for this signature in database
GPG key ID: E42E43ADD853F280

View file

@ -1,32 +1,32 @@
pkgname=mbelib-neo-git
pkgver=r17.131e619
pkgrel=1
pkgdesc="P25 Phase 1 and ProVoice IMBE and Half-rate AMBE vocoder library (modernized fork)"
arch=('x86_64' 'aarch64')
url="https://github.com/arancormonk/mbelib-neo"
license=('GPL-2.0-or-later')
depends=('glibc')
makedepends=('cmake' 'git')
provides=('mbelib-neo' 'mbelib')
conflicts=('mbelib-neo' 'mbelib')
options=('staticlibs')
source=("$pkgname::git+https://github.com/arancormonk/mbelib-neo.git")
sha256sums=('SKIP')
pkgname=mbelib-neo-git
pkgver=r17.131e619
pkgrel=1
pkgdesc="P25 Phase 1 and ProVoice IMBE and Half-rate AMBE vocoder library (modernized fork)"
arch=('x86_64' 'aarch64')
url="https://github.com/arancormonk/mbelib-neo"
license=('GPL-2.0-or-later')
depends=('glibc')
makedepends=('cmake' 'git')
provides=('mbelib-neo' 'mbelib')
conflicts=('mbelib-neo' 'mbelib')
options=('staticlibs')
source=("$pkgname::git+https://github.com/arancormonk/mbelib-neo.git")
sha256sums=('SKIP')
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
pkgver() {
cd "$pkgname"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
build() {
cmake -B build -S "$pkgname" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DMBELIB_BUILD_TESTS=OFF \
-DMBELIB_BUILD_EXAMPLES=OFF
cmake --build build
}
build() {
cmake -B build -S "$pkgname" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DMBELIB_BUILD_TESTS=OFF \
-DMBELIB_BUILD_EXAMPLES=OFF
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}