[arch-commits] Commit in gqrx/repos (8 files)
Kyle Keen
kkeen at archlinux.org
Thu Apr 16 22:30:31 UTC 2015
Date: Friday, April 17, 2015 @ 00:30:31
Author: kkeen
Revision: 131515
archrelease: copy trunk to community-staging-i686, community-staging-x86_64
Added:
gqrx/repos/community-staging-i686/
gqrx/repos/community-staging-i686/PKGBUILD
(from rev 131514, gqrx/trunk/PKGBUILD)
gqrx/repos/community-staging-i686/gqrx.desktop
(from rev 131514, gqrx/trunk/gqrx.desktop)
gqrx/repos/community-staging-i686/gqrx.png
(from rev 131514, gqrx/trunk/gqrx.png)
gqrx/repos/community-staging-x86_64/
gqrx/repos/community-staging-x86_64/PKGBUILD
(from rev 131514, gqrx/trunk/PKGBUILD)
gqrx/repos/community-staging-x86_64/gqrx.desktop
(from rev 131514, gqrx/trunk/gqrx.desktop)
gqrx/repos/community-staging-x86_64/gqrx.png
(from rev 131514, gqrx/trunk/gqrx.png)
---------------------------------------+
community-staging-i686/PKGBUILD | 54 ++++++++++++++++++++++++++++++++
community-staging-i686/gqrx.desktop | 10 +++++
community-staging-x86_64/PKGBUILD | 54 ++++++++++++++++++++++++++++++++
community-staging-x86_64/gqrx.desktop | 10 +++++
4 files changed, 128 insertions(+)
Copied: gqrx/repos/community-staging-i686/PKGBUILD (from rev 131514, gqrx/trunk/PKGBUILD)
===================================================================
--- community-staging-i686/PKGBUILD (rev 0)
+++ community-staging-i686/PKGBUILD 2015-04-16 22:30:31 UTC (rev 131515)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+
+pkgname=gqrx
+pkgver=2.3.2
+pkgrel=3
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/"
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz"
+ "$pkgname.png"
+ "$pkgname.desktop")
+md5sums=('f77dd4d3ee02bd142be5f17a926c21c7'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+ cd "$srcdir"
+ cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+ cd gqrx-$pkgver-alsa
+ sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+ cd "$srcdir/$pkgname-$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"
+ install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
+ install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+ cd "$srcdir/$pkgname-$pkgver/build"
+ make install INSTALL_ROOT="$pkgdir"
+
+ cd "$srcdir/$pkgname-$pkgver-alsa/build"
+ install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+
Copied: gqrx/repos/community-staging-i686/gqrx.desktop (from rev 131514, gqrx/trunk/gqrx.desktop)
===================================================================
--- community-staging-i686/gqrx.desktop (rev 0)
+++ community-staging-i686/gqrx.desktop 2015-04-16 22:30:31 UTC (rev 131515)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=GQRX SDR
+GenericName=Funcube SDR Software
+Comment=Controller application for the Funcube Dongle and operating application.
+Exec=gqrx
+Icon=gqrx
+Terminal=false
+Type=Application
+Categories=AudioVideo;Audio;HamRadio;
+StartupNotify=false
Copied: gqrx/repos/community-staging-i686/gqrx.png (from rev 131514, gqrx/trunk/gqrx.png)
===================================================================
(Binary files differ)
Copied: gqrx/repos/community-staging-x86_64/PKGBUILD (from rev 131514, gqrx/trunk/PKGBUILD)
===================================================================
--- community-staging-x86_64/PKGBUILD (rev 0)
+++ community-staging-x86_64/PKGBUILD 2015-04-16 22:30:31 UTC (rev 131515)
@@ -0,0 +1,54 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: Dominik Heidler <dheidler at gmail.com>
+
+pkgname=gqrx
+pkgver=2.3.2
+pkgrel=3
+pkgdesc="Interactive SDR receiver waterfall for many devices."
+arch=('i686' 'x86_64')
+url="http://gqrx.dk/"
+license=('GPL')
+depends=('qt5-svg' 'libpulse' 'gnuradio-osmosdr' 'libxkbcommon-x11')
+makedepends=('boost')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/csete/gqrx/archive/v$pkgver.tar.gz"
+ "$pkgname.png"
+ "$pkgname.desktop")
+md5sums=('f77dd4d3ee02bd142be5f17a926c21c7'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+ cd "$srcdir"
+ cp -r gqrx-$pkgver gqrx-$pkgver-alsa
+ cd gqrx-$pkgver-alsa
+ sed -i 's/AUDIO_BACKEND = pulse/#&/' gqrx.pro
+}
+
+build() {
+ cd "$srcdir/$pkgname-$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"
+ install -Dm644 "$pkgname.desktop" "$pkgdir/usr/share/applications/$pkgname.desktop"
+ install -Dm644 "$pkgname.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
+
+ cd "$srcdir/$pkgname-$pkgver/build"
+ make install INSTALL_ROOT="$pkgdir"
+
+ cd "$srcdir/$pkgname-$pkgver-alsa/build"
+ install -Dm755 gqrx "$pkgdir/usr/bin/gqrx-alsa"
+}
+
Copied: gqrx/repos/community-staging-x86_64/gqrx.desktop (from rev 131514, gqrx/trunk/gqrx.desktop)
===================================================================
--- community-staging-x86_64/gqrx.desktop (rev 0)
+++ community-staging-x86_64/gqrx.desktop 2015-04-16 22:30:31 UTC (rev 131515)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Name=GQRX SDR
+GenericName=Funcube SDR Software
+Comment=Controller application for the Funcube Dongle and operating application.
+Exec=gqrx
+Icon=gqrx
+Terminal=false
+Type=Application
+Categories=AudioVideo;Audio;HamRadio;
+StartupNotify=false
Copied: gqrx/repos/community-staging-x86_64/gqrx.png (from rev 131514, gqrx/trunk/gqrx.png)
===================================================================
(Binary files differ)
More information about the arch-commits
mailing list