[arch-commits] Commit in (4 files)
Jerome Leclanche
jleclanche at archlinux.org
Sun Sep 25 01:31:38 UTC 2016
Date: Sunday, September 25, 2016 @ 01:31:37
Author: jleclanche
Revision: 190469
pavucontrol-qt: Upstream release 0.1.0
Added:
pavucontrol-qt/
pavucontrol-qt/repos/
pavucontrol-qt/trunk/
pavucontrol-qt/trunk/PKGBUILD
----------+
PKGBUILD | 41 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
Added: pavucontrol-qt/trunk/PKGBUILD
===================================================================
--- pavucontrol-qt/trunk/PKGBUILD (rev 0)
+++ pavucontrol-qt/trunk/PKGBUILD 2016-09-25 01:31:37 UTC (rev 190469)
@@ -0,0 +1,41 @@
+# $Id$
+# Maintainer: Jerome Leclanche <jerome at leclan.ch>
+
+pkgname=pavucontrol-qt
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="A Pulseaudio mixer in Qt (port of pavucontrol)"
+arch=("i686" "x86_64")
+groups=("lxqt")
+url="http://lxqt.org"
+license=("GPL2")
+depends=("pulseaudio")
+makedepends=("cmake" "qt5-tools" "git")
+source=(
+ "https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz"
+ "https://github.com/lxde/$pkgname/releases/download/$pkgver/$pkgname-$pkgver.tar.xz.asc"
+)
+sha256sums=(
+ "f1021248f9985e46e1b8d026c3c2df8e066c129ddf76b124c54d07cad3db7f74"
+ "SKIP"
+)
+validpgpkeys=(
+ "169704C6FB490C6892C7F23C37E0AF1FDA48F373" # Jerome Leclanche <jerome at leclan.ch>
+ "7C733BA5F585AAD669E4D23A42C9C8D3AF5EA5E3" # Alf Gaida <agaida at siduction.org>
+)
+
+
+build() {
+ mkdir -p build
+ cd build
+
+ cmake "$srcdir/$pkgname-$pkgver" \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -DCMAKE_INSTALL_LIBDIR=lib
+ make
+}
+
+package() {
+ cd build
+ make DESTDIR="$pkgdir" install
+}
More information about the arch-commits
mailing list