summaryrefslogtreecommitdiff
path: root/libre/dvdrtools
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-05-16 15:17:31 -0400
committerDavid P <megver83@parabola.nu>2018-05-16 15:17:31 -0400
commit080f32a3a3e1b3044880ce5fac84dc01dabc4f0e (patch)
treeb53232bffaac7ef972856a13b107a4d73ac2d7d1 /libre/dvdrtools
parent30f40fb91514c592533316a9948e4977572e8230 (diff)
remove deprecated [libre] packages
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/dvdrtools')
-rw-r--r--libre/dvdrtools/PKGBUILD54
1 files changed, 0 insertions, 54 deletions
diff --git a/libre/dvdrtools/PKGBUILD b/libre/dvdrtools/PKGBUILD
deleted file mode 100644
index fd2540eeb..000000000
--- a/libre/dvdrtools/PKGBUILD
+++ /dev/null
@@ -1,54 +0,0 @@
-# $Id: PKGBUILD 113887 2014-07-01 08:03:15Z fyan $
-# Maintainer (Arch): Alexander Baldeck <alexander@archlinux.org>
-# Contributor (Arch): dorphell <dorphell@archlinux.org>
-# Contributor (Arch): Tom Newsom <Jeepster@gmx.co.uk>
-# Maintainer: André Silva <emulatorman@hyperbola.info>
-
-pkgname=dvdrtools
-_pkgname=$pkgname-libre
-pkgver=0.3.1
-pkgrel=4.parabola1.1
-pkgdesc="A fork of cdrtools, with the primary goal of supporting writable DVD drives, without nonfree apple_driver utility"
-arch=('i686' 'x86_64' 'armv7h')
-url="http://savannah.nongnu.org/projects/$pkgname/"
-license=('GPL2')
-depends=('file' 'bash')
-makedepends=('transcode')
-optdepends=('transcode: video/DVD ripper and encoder for the terminal/console')
-conflicts=("$_pkgname" 'cdrkit')
-replaces=("$_pkgname")
-mksource=(ftp://ftp.archlinux.org/other/$pkgname/$pkgname-$pkgver.tar.gz)
-source=(https://repo.parabola.nu/other/$_pkgname/$_pkgname-$pkgver.tar.gz)
-mkmd5sums=('5707b7e877b853e258cd738938833006')
-md5sums=('2f5328b875b34b48f27b5ec4c26b35a6')
-
-mksource() {
- cd "$srcdir/$pkgname-$pkgver"
-
- # Remove nonfree apple_driver utility
- rm -rvf {mkisofs/README.hfs_boot,apple_driver{.8,.c,.mk,_man.mk}}
-}
-
-build() {
- cd "$srcdir/$pkgname-$pkgver"
- ./configure --prefix=/usr --mandir=/usr/share/man
- make
-}
-
-package() {
- cd "$srcdir/$pkgname-$pkgver"
- make DESTDIR="$pkgdir" install
-
- # Make symlinks for cdrtools compatibility
- ln -s dvdrecord $pkgdir/usr/bin/cdrecord
- ln -s dvdrecord $pkgdir/usr/bin/wodim
- ln -s mkisofs $pkgdir/usr/bin/genisoimage
- ln -s mkisofs $pkgdir/usr/bin/mkhybrid
- ln -s readcd $pkgdir/usr/bin/readom
-
- ln -s dvdrecord.1.gz $pkgdir/usr/share/man/man1/cdrecord.1.gz
- ln -s dvdrecord.1.gz $pkgdir/usr/share/man/man1/wodim.1.gz
- ln -s mkisofs.8.gz $pkgdir/usr/share/man/man8/genisoimage.8.gz
- ln -s mkisofs.8.gz $pkgdir/usr/share/man/man8/mkhybrid.8.gz
- ln -s readcd.1.gz $pkgdir/usr/share/man/man1/readom.1.gz
-}