From 7823e8c22aa2fcda78cb10a0e639c19b273d67f5 Mon Sep 17 00:00:00 2001 From: Cedric Girard Date: Mon, 10 Aug 2015 13:11:06 +0200 Subject: [PATCH] import from AUR3 --- .SRCINFO | 20 ++++++++++++++++++++ PKGBUILD | 21 +++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..8c4f1de --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,20 @@ +pkgbase = makemkv-libaacs + pkgdesc = Enable libaacs emulation from MakeMKV + pkgver = 1 + pkgrel = 1 + epoch = 1 + url = http://www.makemkv.com/forum2/viewtopic.php?f=3&t=7009 + arch = any + license = none + depends = makemkv + depends = qt4 + depends = ffmpeg + provides = libaacs + provides = libbdplus + conflicts = libaacs + conflicts = libaacs-git + conflicts = libbdplus + conflicts = libdplus-git + +pkgname = makemkv-libaacs + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..d7c1a6b --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,21 @@ +# Maintainer: Cedric Girard +# Contributor: Frank Phillips +# Contributor: Olaf Bauer + +pkgname=makemkv-libaacs +pkgver=1 +pkgrel=1 +epoch=1 +pkgdesc="Enable libaacs emulation from MakeMKV" +arch=('any') +license=('none') +url="http://www.makemkv.com/forum2/viewtopic.php?f=3&t=7009" +depends=('makemkv' 'qt4' 'ffmpeg') +provides=('libaacs' 'libbdplus') +conflicts=('libaacs' 'libaacs-git' 'libbdplus' 'libdplus-git') + +package() { + install -d $pkgdir/usr/lib + ln -s libmmbd.so.0 $pkgdir/usr/lib/libaacs.so.0 + ln -s libmmbd.so.0 $pkgdir/usr/lib/libbdplus.so.0 +}