Package Details: lxdvdrip 1.77-1

Git Clone URL: https://aur.archlinux.org/lxdvdrip.git (read-only, click to copy)
Package Base: lxdvdrip
Description: Rip/reauthor/burn DVDs
Upstream URL: http://sourceforge.net/projects/lxdvdrip/
Licenses: GPL
Conflicts: mpgtx
Provides: mpgtx
Submitter: None
Maintainer: ghostlovescore
Last Packager: ghostlovescore
Votes: 25
Popularity: 0.000000
First Submitted: 2005-06-13 15:47 (UTC)
Last Updated: 2015-06-14 11:37 (UTC)

Latest Comments

ghostlovescore commented on 2012-04-23 10:15 (UTC)

I saw some PKGBUILDs having sudo so i thought it's ok to have sudo added. I updated PKGBUILD now. Thanks for your help. o/

muunleit commented on 2012-04-22 10:39 (UTC)

Using "sudo" in a PKGBUILD isn't a good idea or am I wrong? I've edited the PKGBUILD a little bit, so it works without "sudo". http://pastie.org/3832915

ghostlovescore commented on 2012-04-19 07:33 (UTC)

Bump to version 1.77.

mirandir commented on 2011-11-23 21:17 (UTC)

lxdvdrip 1.77 : http://freecode.com/projects/lxdvdrip/releases/337920

<deleted-account> commented on 2010-04-23 02:12 (UTC)

PKGBUILD updated for 1.76 # Contributor: Daniel Isenmann <daniel.isenmann [at] gmx.de> # Contributor: Phignuton <phignuton at gmail dot com> - updated for 1.76 pkgname=lxdvdrip pkgver=1.76 pkgrel=1 pkgdesc="lxdvdrip is able to rip a DVD title or chapters, reauthor the files to a DVD-Structure, preview the Files and burn to a DVD+/-R" url="http://developer.berlios.de/projects/lxdvdrip/" license="GPL" depends=('dvdauthor' 'mplayer' 'dvd+rw-tools' 'transcode' 'dvdwizard' 'libdvdread' 'libdvdnav') makedepends=('libdvdread') conflicts=('mpgtx') provides=('mpgtx') arch=('i686' 'x86_64') source=(http://download.berlios.de/lxdvdrip/$pkgname-$pkgver.tgz make.patch) md5sums=('014e1383966b9e608e1dc3572072cbd2' '1e364214e174850d7dcf4d2a009f957d') build() { cd $startdir/src/$pkgname mkdir -p $startdir/pkg/{etc,usr/bin,usr/share/man/man1} patch -Np0 -i ../make.patch || return 1 make || return 1 make INSTALLDIR=$startdir/pkg/usr/ install cp doc-pak/lxdvdrip.conf.EN $startdir/pkg/etc cd vamps && make PREFIX=$startdir/pkg/usr install || return 1 cd .. cd dvdbackup && make PREFIX=$startdir/pkg/usr install || return 1 cd .. cd requant && make PREFIX=$startdir/pkg/usr install || return 1 cd .. cd buffer && make INSTBIN=$startdir/pkg/usr/bin install || return 1 cd .. cp mpgtx/mpgtx $startdir/pkg/usr/bin }