summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bf377c9853a863a2c75269a69eb700c1067d10fc (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: Spike29 <leguen.yannick@gmail.com>
# Contributor: goetzc <goetzchrist@gmail.com>
# Contributor: Lucas SaliƩs Brum <lucas@archlinux.com.br>
 
pkgname=audio-recorder
pkgver=1.7.2
pkgrel=2
pkgdesc="Free audio-recorder for Linux"
arch=('i686' 'x86_64')
url='https://launchpad.net/~audio-recorder'
license=('GPL3')
depends=('gst-plugins-base' 'gtk3' 'libappindicator-gtk3')
makedepends=('intltool')
optdepends=('pulseaudio: for extended recording capabilities'
            'gst-plugins-good: for WAV and Flac encoding'
            'gst-plugins-bad: for AAC encoding'
            'gst-plugins-ugly: for MP3 encoding')
install="$pkgname.install"
source=("https://launchpad.net/~${pkgname}/+archive/ubuntu/ppa/+files/${pkgname}_1.7-2%7Ewily.tar.gz")
md5sums=('31e6ab19c1985790e712e51a5b8b03f9')
 
build() {
  cd "$srcdir/$pkgname"
  ./configure --prefix=/usr
  make
}
 
package() {
  cd "$srcdir/$pkgname"
  make DESTDIR="$pkgdir/" install
}