summaryrefslogtreecommitdiff
path: root/community/skype-call-recorder/PKGBUILD
blob: 83f944c973326711cb9effa44f6fa3424d79314b (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
# $Id: PKGBUILD 6063 2009-11-28 12:03:50Z foutrelis $
# Maintainer: Evangelos Foutras <foutrelis@gmail.com>
# Contributor: Tarinaky <tarinaky@hunity.co.uk>

pkgname=skype-call-recorder
pkgver=0.8
pkgrel=1
pkgdesc="Open source tool that allows you to record your Skype calls on Linux"
arch=('i686' 'x86_64')
url="http://atdot.ch/scr/"
license=('GPL')
depends=('qt' 'libvorbis' 'lame' 'id3lib' 'hicolor-icon-theme')
makedepends=('cmake')
install=skype-call-recorder.install
source=(http://atdot.ch/scr/files/$pkgver/$pkgname-$pkgver.tar.gz)
md5sums=('937544a5245fdcfa50878d083dab706a')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  cmake -DCMAKE_INSTALL_PREFIX=/usr .
  make || return 1
  make DESTDIR="$pkgdir" install
}

# vim:set ts=2 sw=2 et: