mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
24 lines
889 B
Bash
24 lines
889 B
Bash
# $Id: PKGBUILD 36134 2009-04-20 03:02:33Z eric $
|
|
# Maintainer: Paul Mattal <paul@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@mattal.com>
|
|
# Contributor: Jeremy Sands <cto@jeremysands.com>
|
|
|
|
pkgname=nuvexport
|
|
pkgver=20090413
|
|
relnum=0.5
|
|
pkgrel=1
|
|
pkgdesc="Export for MythTV nuv files to other formats (DVD/SVCD/DivX,etc.)"
|
|
arch=(i686 x86_64)
|
|
url="http://forevermore.net/files/nuvexport"
|
|
license=('GPL2')
|
|
depends=(perl perl-dbi 'ffmpeg>=0.5' perl-dbd-mysql perl-date-manip)
|
|
backup=('etc/nuvexportrc')
|
|
install=${pkgname}.install
|
|
source=(http://forevermore.net/files/nuvexport/$pkgname-$relnum-0.$pkgver.svn.tar.bz2)
|
|
md5sums=('b6e4d973c5b53fb4dd2ba7e04b599496')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$relnum
|
|
make INSTALL=/bin/install prefix=$pkgdir/usr sysconfdir=$pkgdir/etc install || return 1
|
|
sed -i "s|/tmp/fifodir|/var/tmp/fifodir|g" $pkgdir/usr/share/nuvexport/export/*.pm || return 1
|
|
}
|