diff options
author | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-05 02:45:44 -0300 |
---|---|---|
committer | coadde [Márcio Alexandre Silva Delgado] <coadde@parabola.nu> | 2014-09-05 02:45:44 -0300 |
commit | 4af55f71f165e92145f2cdf5396efd04c3266e52 (patch) | |
tree | 920284a9e6a4e0389de6f043cc13cef86b76386e /libre/dvdrtools | |
parent | 9db285f49ab90c8c1b6edbd67e7dff962dfb9eec (diff) |
dvdrtools: fix pkgname
Diffstat (limited to 'libre/dvdrtools')
-rw-r--r-- | libre/dvdrtools/PKGBUILD | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/libre/dvdrtools/PKGBUILD b/libre/dvdrtools/PKGBUILD new file mode 100644 index 000000000..8f63f4734 --- /dev/null +++ b/libre/dvdrtools/PKGBUILD @@ -0,0 +1,55 @@ +# $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@parabola.nu> + +pkgname=dvdrtools +_pkgname=$pkgname-libre +pkgver=0.3.1 +pkgrel=4.parabola1 +pkgdesc="A fork of cdrtools, with the primary goal of supporting writable DVD drives, without nonfree apple_driver utility" +arch=('i686' 'x86_64' 'mips64el') +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') +provides=('cdrkit') +conflicts=("$_pkgname" 'cdrkit') +replaces=("$_pkgname") +mksource=(ftp://ftp.archlinux.org/other/$_pkgname/$_pkgname-$pkgver.tar.gz) +source=(https://repo.parabolagnulinux.org/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 +} |