mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-03-19 00:21:40 +00:00
25 lines
853 B
Bash
25 lines
853 B
Bash
![]() |
# $Id: PKGBUILD 46391 2009-07-17 18:06:24Z hugo $
|
||
|
# Maintainer: Alexander Baldeck <alexander@archlinux.org>
|
||
|
# Contributor: dorphell <dorphell@archlinux.org>
|
||
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
||
|
pkgname=dvdrtools
|
||
|
pkgver=0.3.1
|
||
|
pkgrel=2
|
||
|
pkgdesc="A fork of cdrtools, with the primary goal of supporting writable DVD drives"
|
||
|
arch=(i686 x86_64)
|
||
|
url="http://savannah.nongnu.org/projects/dvdrtools/"
|
||
|
license=('GPL')
|
||
|
depends=('glibc' 'file')
|
||
|
makedepends=('transcode')
|
||
|
optdepends=('transcode: video/DVD ripper and encoder for the terminal/console')
|
||
|
conflicts=('cdrkit')
|
||
|
source=(ftp://ftp.archlinux.org/other/dvdrtools/$pkgname-$pkgver.tar.gz)
|
||
|
md5sums=('5707b7e877b853e258cd738938833006')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr --mandir=/usr/share/man || return 1
|
||
|
make || return 1
|
||
|
make DESTDIR=$pkgdir install || return 1
|
||
|
}
|