blob: 4fd9ca16c06c17db538f98ce9963d502d612981f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Maintainer: Luna Jernberg <lunajernberg@gnome.org>
pkgname=gnome-voice
pkgver=8.0.0
pkgrel=2
pkgdesc="Voice is Public Voice Communication Software for GNOME 43 more information on on https://wiki.gnome.org/Apps/Voice and http://www.gnomevoice.org/"
arch=('x86_64')
url="https://wiki.gnome.org/Apps/Voice"
license=(GPL3)
depends=('libchamplain' 'geoclue' 'gst-plugins-base' 'gst-plugins-bad')
makedepends=('intltool' 'itstool' 'python')
source=(http://www.gnomevoice.org/src/gnome-voice-8.0.0.tar.xz)
sha256sums=('3490f92a1c6cda620a409aec4cf3e894cde2f99ad484a13ba225dd4cec3ba477')
build() {
cd $pkgname-$pkgver
./configure --prefix=/usr --with-recording
make
}
check(){
cd $pkgname-$pkgver
make check -k
}
package(){
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
}
|