Cedric Girard
8f58f3b6a3
git-subtree-dir: makemkv-libaacs git-subtree-mainline:be0c8c75bd
git-subtree-split:b815d3eac6
21 lines
603 B
Bash
21 lines
603 B
Bash
# Maintainer: Cedric Girard <girard.cedric@gmail.com>
|
|
# Contributor: Frank Phillips <frankalso@gmail.com>
|
|
# Contributor: Olaf Bauer <hydro@freenet.de>
|
|
|
|
pkgname=makemkv-libaacs
|
|
pkgver=1
|
|
pkgrel=2
|
|
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')
|
|
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
|
|
}
|