Skip to content

Instantly share code, notes, and snippets.

@b1tninja
Last active October 30, 2019 18:23
Show Gist options
  • Save b1tninja/74feab88076d95cbb80744362b705a83 to your computer and use it in GitHub Desktop.
Save b1tninja/74feab88076d95cbb80744362b705a83 to your computer and use it in GitHub Desktop.
FFT_eval-git
PACKAGER="Justin Capella <justincapella@gmail.com>"
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