fix formatting issue

This commit is contained in:
arancormonk 2025-12-10 10:27:47 -06:00
parent 2d30c23bb8
commit 693bf25e5e
No known key found for this signature in database
GPG key ID: E42E43ADD853F280
2 changed files with 40 additions and 40 deletions

View file

@ -1,6 +1,6 @@
pkgbase = dsd-neo-git
pkgdesc = Digital Speech Decoder - A modern, modular, and performance enhanced C/C++ decoder for digital voice. DMR, P25, NXDN, YSF, and more.
pkgver = r630.f8061b7
pkgver = r632.c900925
pkgrel = 1
url = https://github.com/arancormonk/dsd-neo
arch = x86_64

View file

@ -1,42 +1,42 @@
pkgname=dsd-neo-git
pkgver=r630.f8061b7
pkgrel=1
pkgdesc="Digital Speech Decoder - A modern, modular, and performance enhanced C/C++ decoder for digital voice. DMR, P25, NXDN, YSF, and more."
arch=('x86_64' 'aarch64')
url="https://github.com/arancormonk/dsd-neo"
license=('GPL-3.0-or-later')
depends=(
'mbelib-neo'
'libsndfile'
'itpp'
'ncurses'
'libpulse'
'rtl-sdr'
'codec2'
)
makedepends=(
'git'
'cmake'
)
provides=('dsd-neo')
conflicts=('dsd-neo')
source=("${pkgname}::git+https://github.com/arancormonk/dsd-neo.git")
sha256sums=('SKIP')
pkgname=dsd-neo-git
pkgver=r632.c900925
pkgrel=1
pkgdesc="Digital Speech Decoder - A modern, modular, and performance enhanced C/C++ decoder for digital voice. DMR, P25, NXDN, YSF, and more."
arch=('x86_64' 'aarch64')
url="https://github.com/arancormonk/dsd-neo"
license=('GPL-3.0-or-later')
depends=(
'mbelib-neo'
'libsndfile'
'itpp'
'ncurses'
'libpulse'
'rtl-sdr'
'codec2'
)
makedepends=(
'git'
'cmake'
)
provides=('dsd-neo')
conflicts=('dsd-neo')
source=("${pkgname}::git+https://github.com/arancormonk/dsd-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 \
-DBUILD_TESTING=OFF \
-Wno-dev
cmake --build build
}
build() {
cmake -B build -S "$pkgname" \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_TESTING=OFF \
-Wno-dev
cmake --build build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}
package() {
DESTDIR="$pkgdir" cmake --install build
}