summaryrefslogtreecommitdiff
path: root/pcr/gqrx-xtrx
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2018-12-01 01:54:16 +0100
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2018-12-01 01:58:02 +0100
commitfd2f83768f4734c4cda46a802e3cffab445950b5 (patch)
tree8e52b38534f9fb3926d6e8b054a919901720d55c /pcr/gqrx-xtrx
parent1df438609fd1d54ff8e7994f73829c8b0666eabc (diff)
pcr: Move work in progress xtrx related packages to pcr-testing
As I understand from what I was told on IRC, pcr is not for packages that are still in developement and not good enough quality to be pushed in the repositories that users are using while pcr-testing seem to be apropriate for that. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'pcr/gqrx-xtrx')
-rw-r--r--pcr/gqrx-xtrx/PKGBUILD55
1 files changed, 0 insertions, 55 deletions
diff --git a/pcr/gqrx-xtrx/PKGBUILD b/pcr/gqrx-xtrx/PKGBUILD
deleted file mode 100644
index 83a906f0d..000000000
--- a/pcr/gqrx-xtrx/PKGBUILD
+++ /dev/null
@@ -1,55 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd@gmail.com>
-# Contributor: Dominik Heidler <dheidler@gmail.com>
-# Contributor: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-
-_pkgname=gqrx
-pkgname=gqrx-xtrx
-pkgver=2.11.1
-pkgrel=2
-pkgdesc="Interactive SDR receiver waterfall for many devices."
-arch=(i686 x86_64)
-url="http://gqrx.dk/"
-license=('GPL')
-depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr-xtrx' 'libxkbcommon-x11')
-conflicts=('gqrx')
-makedepends=('boost')
-#source=("$_pkgname-$pkgver.tgz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz")
-source=("https://github.com/csete/gqrx/releases/download/v$pkgver/gqrx-sdr-$pkgver-src.tar.xz")
-md5sums=('e6aa0d72de6420fc4fec00669996eac7')
-
-prepare() {
- cd "$srcdir"
- echo "StartupNotify=false" >> gqrx-sdr-$pkgver/gqrx.desktop
- cp -r gqrx-sdr-$pkgver gqrx-$pkgver-alsa
- cd gqrx-$pkgver-alsa
- sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
-}
-
-build() {
- cd "$srcdir/$_pkgname-sdr-$pkgver"
- rm -rf build
- mkdir build
- cd build
- qmake PREFIX=/usr/ ..
- make
- cd "$srcdir/$_pkgname-$pkgver-alsa"
- rm -rf build
- mkdir build
- cd build
- qmake PREFIX=/usr/ ..
- make
-}
-
-package() {
- cd "$srcdir/$_pkgname-sdr-$pkgver"
- install -Dm644 "$_pkgname.desktop" "$pkgdir/usr/share/applications/$_pkgname.desktop"
- install -Dm644 "resources/icons/gqrx.svg" "$pkgdir/usr/share/pixmaps/gqrx.svg"
-
- cd "$srcdir/$_pkgname-sdr-$pkgver/build"
- make install INSTALL_ROOT="$pkgdir"
-
- cd "$srcdir/$_pkgname-$pkgver-alsa/build"
- install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
-}
-