mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
719 B
Bash
22 lines
719 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
|
||
|
# Contributor: Gilles CHAUVIN <gcnweb at gmail dot com>
|
||
|
|
||
|
pkgname=recordmydesktop
|
||
|
pkgver=0.3.8.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="Produces a OGG encapsulated Theora/Vorbis recording of your desktop"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://recordmydesktop.sourceforge.net"
|
||
|
license=('GPL')
|
||
|
depends=('alsa-lib' 'zlib' 'libvorbis' 'libxdamage' 'libxext' 'libtheora' 'libsm')
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('6998b165540598965499bd99d8aa0eef')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|