[arch-commits] Commit in multimon-ng/repos (2 files)

Felix Yan felixonmars at archlinux.org
Tue Jul 7 17:41:11 UTC 2020


    Date: Tuesday, July 7, 2020 @ 17:41:10
  Author: felixonmars
Revision: 659836

archrelease: copy trunk to community-staging-x86_64

Added:
  multimon-ng/repos/community-staging-x86_64/
  multimon-ng/repos/community-staging-x86_64/PKGBUILD
    (from rev 659835, multimon-ng/trunk/PKGBUILD)

----------+
 PKGBUILD |   33 +++++++++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

Copied: multimon-ng/repos/community-staging-x86_64/PKGBUILD (from rev 659835, multimon-ng/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD	                        (rev 0)
+++ community-staging-x86_64/PKGBUILD	2020-07-07 17:41:10 UTC (rev 659836)
@@ -0,0 +1,33 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Kyle Keen <keenerd at gmail.com>
+
+pkgname=multimon-ng
+pkgver=1.1.8
+pkgrel=2
+pkgdesc="An sdr decoder, supports pocsag, ufsk, clipfsk, afsk, hapn, fsk, dtmf, zvei."
+url="https://github.com/EliasOenal/multimon-ng"
+arch=('x86_64')
+license=("GPL2")
+depends=('ncurses' 'libpulse')
+makedepends=('cmake')
+optdepends=('sox: wav conversion')
+source=("$pkgname-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
+sha512sums=('9cf93362555e5dc465a9ec60dff27b9875879afd954e810069022b3c003eca4c3ab2a833f1c00fef877175bc72e2d378bbb53380ada54542ae29d257a7d2bd1b')
+
+build() {
+  mkdir "$srcdir"/$pkgname-$pkgver/build
+  cd "$srcdir"/$pkgname-$pkgver/build
+
+  cmake .. \
+    -DCMAKE_INSTALL_PREFIX=/usr \
+    -DCMAKE_BUILD_TYPE=Release
+
+  make
+}
+
+package() {
+  cd "$srcdir"/$pkgname-$pkgver/build
+
+  make DESTDIR="$pkgdir" install
+}
+



More information about the arch-commits mailing list