summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@endefensadelsl.org>2014-07-14 03:35:11 +0000
committerNicolás Reynolds <fauno@endefensadelsl.org>2014-07-14 03:35:11 +0000
commita4111d7e955b56d51181adc90eb77f8e4903cb64 (patch)
treea094b605cfa85a02d03d36fa81fa4c4a6c8d257e /community
parent4a7144171d1f4f268356dceb2197bae544b69540 (diff)
Mon Jul 14 03:32:14 UTC 2014
Diffstat (limited to 'community')
-rw-r--r--community/gqrx/PKGBUILD54
-rw-r--r--community/gqrx/gqrx.desktop10
-rw-r--r--community/gqrx/gqrx.pngbin0 -> 3466 bytes
-rw-r--r--community/haskell-tar/PKGBUILD46
-rw-r--r--community/haskell-tar/haskell-tar.install24
-rw-r--r--community/lsdvd/PKGBUILD29
-rw-r--r--community/qlandkartegt/PKGBUILD6
-rw-r--r--community/qlandkartegt/qlandkartegt.changelog3
-rw-r--r--community/uwsgi/PKGBUILD6
-rw-r--r--community/zramctl/PKGBUILD23
10 files changed, 114 insertions, 87 deletions
diff --git a/community/gqrx/PKGBUILD b/community/gqrx/PKGBUILD
new file mode 100644
index 000000000..11f84a1dd
--- /dev/null
+++ b/community/gqrx/PKGBUILD
@@ -0,0 +1,54 @@
+# $Id: PKGBUILD 115635 2014-07-12 22:23:39Z kkeen $
+# Maintainer: Kyle Keen <keenerd@gmail.com>
+# Contributor: Dominik Heidler <dheidler@gmail.com>
+
+pkgname=gqrx
+pkgver=2.2.0
+pkgrel=1
+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=("https://github.com/csete/gqrx/archive/v$pkgver.tar.gz"
+ "$pkgname.png"
+ "$pkgname.desktop")
+md5sums=('ff771b9c31ee17f704859398362b8cc0'
+ 'f7032a8883c89bd80e0d0fd36f861c59'
+ '810f89195231c18f32af92522aade721')
+
+prepare() {
+ cd "$srcdir"
+ cp -r gqrx-2.2.0 gqrx-2.2.0-alsa
+ cd gqrx-2.2.0-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"
+}
+
diff --git a/community/gqrx/gqrx.desktop b/community/gqrx/gqrx.desktop
new file mode 100644
index 000000000..1094d7c12
--- /dev/null
+++ b/community/gqrx/gqrx.desktop
@@ -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
diff --git a/community/gqrx/gqrx.png b/community/gqrx/gqrx.png
new file mode 100644
index 000000000..dc86b7a46
--- /dev/null
+++ b/community/gqrx/gqrx.png
Binary files differ
diff --git a/community/haskell-tar/PKGBUILD b/community/haskell-tar/PKGBUILD
deleted file mode 100644
index 45e8d8427..000000000
--- a/community/haskell-tar/PKGBUILD
+++ /dev/null
@@ -1,46 +0,0 @@
-# $Id: PKGBUILD 110633 2014-05-04 13:55:12Z td123 $
-# Maintainer: Alexander Rødseth <rodseth@gmail.com>
-# Contributor: Arch Haskell Team <arch-haskell@haskell.org>
-
-pkgname=haskell-tar
-pkgver=0.4.0.1
-pkgrel=8
-pkgdesc='Reading, writing and manipulating tar archive files'
-url='http://hackage.haskell.org/package/tar'
-license=('custom:BSD3')
-arch=('x86_64' 'i686')
-depends=('ghc=7.8.2-2')
-source=("http://hackage.haskell.org/packages/archive/tar/$pkgver/tar-$pkgver.tar.gz")
-install=haskell-tar.install
-sha256sums=('a408274d8325f4e3144c5aa154d72f1ee7b0a7342570fd6805e3be3fe0d97a6d')
-options=('staticlibs')
-
-build() {
- cd "tar-$pkgver"
-
- runhaskell Setup configure -O -p --enable-split-objs --enable-shared \
- --prefix=/usr --docdir="/usr/share/doc/$pkgname" \
- --libsubdir=\$compiler/site-local/\$pkgid
- runhaskell Setup build
- runhaskell Setup haddock
- runhaskell Setup register --gen-script
- runhaskell Setup unregister --gen-script
- sed -i -r -e "s|ghc-pkg.*unregister[^ ]* |&'--force' |" unregister.sh
-}
-
-package() {
- cd "tar-$pkgver"
-
- install -Dm 744 register.sh \
- $pkgdir/usr/share/haskell/$pkgname/register.sh
- install -m 744 unregister.sh \
- $pkgdir/usr/share/haskell/$pkgname/unregister.sh
- install -dm 755 $pkgdir/usr/share/doc/ghc/html/libraries
- ln -s /usr/share/doc/$pkgname/html \
- $pkgdir/usr/share/doc/ghc/html/libraries/tar
- runhaskell Setup copy --destdir=$pkgdir
- install -Dm 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
- rm -f $pkgdir/usr/share/doc/$pkgname/LICENSE
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/haskell-tar/haskell-tar.install b/community/haskell-tar/haskell-tar.install
deleted file mode 100644
index 7e0383621..000000000
--- a/community/haskell-tar/haskell-tar.install
+++ /dev/null
@@ -1,24 +0,0 @@
-HS_DIR=usr/share/haskell/haskell-tar
-
-post_install() {
- ${HS_DIR}/register.sh
- post_remove
-}
-
-pre_upgrade() {
- ${HS_DIR}/unregister.sh
-}
-
-post_upgrade() {
- post_install
-}
-
-pre_remove() {
- pre_upgrade
-}
-
-post_remove() {
- (cd usr/share/doc/ghc/html/libraries; ./gen_contents_index)
-}
-
-# vim:set ts=2 sw=2 et:
diff --git a/community/lsdvd/PKGBUILD b/community/lsdvd/PKGBUILD
index 69fca75c9..0bb721b95 100644
--- a/community/lsdvd/PKGBUILD
+++ b/community/lsdvd/PKGBUILD
@@ -1,28 +1,33 @@
-# $Id: PKGBUILD 76873 2012-10-01 14:53:57Z bisson $
-# Maintainer: Aaron Griffin <aaron@archlinux.org>
+# $Id: PKGBUILD 115655 2014-07-13 16:11:47Z jsteel $
+# Maintainer: Jonathan Steel <jsteel at aur.archlinux.org>
+# Contributor: Aaron Griffin <aaron@archlinux.org>
+# Contributor: Mathieu Clabaut <mathieu.clabaut@gmail.com>
pkgname=lsdvd
pkgver=0.16
-pkgrel=6
-pkgdesc="A C application for reading the contents of a DVD and printing the contents to your terminal"
+pkgrel=7
+pkgdesc="Console application that displays the content of a DVD"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/lsdvd/"
-depends=('libdvdread')
license=('GPL2')
-#Special thanks to Mathieu Clabaut <mathieu.clabaut@gmail.com> for patches
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'stdint_usage.patch')
+depends=('libdvdread')
+source=(http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.gz
+ stdint_usage.patch)
md5sums=('340e1abe5c5e5abf7ff8031e78f49ee7'
'6cbcbfde873f894bd3c784f65141b2fc')
build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- patch -Np1 -i "${srcdir}/stdint_usage.patch"
+ cd "$srcdir"/$pkgname-$pkgver
+
+ patch -Np1 -i "$srcdir"/stdint_usage.patch
+
./configure --prefix=/usr --mandir=/usr/share/man
+
make
}
package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir"/ install
}
diff --git a/community/qlandkartegt/PKGBUILD b/community/qlandkartegt/PKGBUILD
index 1cacf37df..3bf1d5b3a 100644
--- a/community/qlandkartegt/PKGBUILD
+++ b/community/qlandkartegt/PKGBUILD
@@ -1,10 +1,10 @@
-# $Id: PKGBUILD 106093 2014-02-22 12:16:01Z jlichtblau $
+# $Id: PKGBUILD 115652 2014-07-13 13:45:22Z jlichtblau $
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Matthias Maennich <arch@maennich.net>
# Contributor: <boenki@gmx.de>
pkgname=qlandkartegt
-pkgver=1.7.6
+pkgver=1.7.7
pkgrel=1
pkgdesc="Use your GPS with Linux"
arch=('i686' 'x86_64')
@@ -40,3 +40,5 @@ package(){
install -D -m644 "${srcdir}/$pkgname-mimetypes.xml" \
"${pkgdir}/usr/share/mime/packages/$pkgname-mimetypes.xml"
}
+sha256sums=('0b0d659bef580bff7c6aabd563ad9bf0cf2d32467fe11e613ceaab58be7363d0'
+ 'e8d33948831f8a66edd752c71c653085d6c4d9f1969e70dd8c40b9c7ca37fba0')
diff --git a/community/qlandkartegt/qlandkartegt.changelog b/community/qlandkartegt/qlandkartegt.changelog
index cad9bb592..a9239bbbb 100644
--- a/community/qlandkartegt/qlandkartegt.changelog
+++ b/community/qlandkartegt/qlandkartegt.changelog
@@ -1,3 +1,6 @@
+2014-07-13 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
+ * qlandkartegt 1.7.7-1
+
2014-02-22 Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
* qlandkartegt 1.7.6-1
diff --git a/community/uwsgi/PKGBUILD b/community/uwsgi/PKGBUILD
index d3194706a..92a7868e2 100644
--- a/community/uwsgi/PKGBUILD
+++ b/community/uwsgi/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 112985 2014-06-10 20:27:23Z dwallace $
+# $Id: PKGBUILD 115665 2014-07-13 20:09:27Z dwallace $
# Maintainer: Daniel Wallace <danielwallace at gtmanfred dot com>
# Contributor: Valentin Hăloiu <vially.ichb+aur@gmail.com>
# Contributor: Angel Velasquez <angvp@archlinux.org>
@@ -24,7 +24,7 @@ pkgname=(uwsgi
)
#uwsgi-plugin-erlang
#uwsgi-plugin-admin
-pkgver=2.0.5.1
+pkgver=2.0.6
pkgrel=1
arch=(i686 x86_64)
url="http://projects.unbit.it/$pkgbase"
@@ -46,7 +46,7 @@ source=(http://projects.unbit.it/downloads/$pkgbase-$pkgver.tar.gz
emperor.uwsgi.service
emperor.uwsgi.socket)
-md5sums=('9c89a1d411719b205f4709abe166efe9'
+md5sums=('50e9657ebbf52dd3bcd57b565f6b65a5'
'a0749da07b545efcbb0276f52be22652'
'752475ee32286acfbafa49b898616817'
'c54a60431d8d81c1a65b9f4b271ac718'
diff --git a/community/zramctl/PKGBUILD b/community/zramctl/PKGBUILD
new file mode 100644
index 000000000..8b4b5f26c
--- /dev/null
+++ b/community/zramctl/PKGBUILD
@@ -0,0 +1,23 @@
+# $Id: PKGBUILD 113760 2014-06-29 16:15:23Z fyan $
+# Maintainer: Felix Yan <felixonmars@gmail.com>
+
+pkgname=zramctl
+pkgver=0.1
+pkgrel=1
+pkgdesc="Tool to control zram devices"
+arch=('i686' 'x86_64')
+url="https://github.com/Nefelim4ag/zramctl"
+license=('GPL3')
+depends=('gcc-libs')
+makedepends=('git')
+source=("git+https://github.com/Nefelim4ag/zramctl.git#tag=$pkgver")
+md5sums=('SKIP')
+
+build() {
+ cd zramctl
+ ./compile.sh
+}
+
+package() {
+ install -Dm755 zramctl/zramctl "$pkgdir/usr/bin/zramctl"
+}