Last active
October 30, 2019 18:23
-
-
Save b1tninja/74feab88076d95cbb80744362b705a83 to your computer and use it in GitHub Desktop.
FFT_eval-git
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PACKAGER="Justin Capella <[email protected]>" | |
pkgname="fft_eval-git" | |
provides=("${pkgname%-git}") | |
conflicts=("${pkgname%-git}") | |
arch=("x86_64") | |
depends=("sdl2" "sdl2_ttf") | |
optdepends=("ttf-liberation") | |
source=("${pkgname%-git}::git+https://github.com/simonwunderlich/FFT_eval.git") | |
pkgrel=1 | |
pkgver=0.73 | |
license=("GPL2") | |
pkgdesc="Visualizes the FFT data reported by the chips to help interpreting and understanding the data" | |
build() { | |
cd "${srcdir}/${pkgname%-git}" | |
make | |
} | |
package() { | |
cd "${srcdir}/${pkgname%-git}" | |
install -Dm755 fft_eval_{json,sdl} -t "${pkgdir}/usr/bin/" | |
} | |
md5sums=('SKIP') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment