libdvdnav:moved into main for pisi 2.0

This commit is contained in:
2015-07-23 18:22:40 +03:00
parent 1f274d06c6
commit d6dcdcbe67
3 changed files with 149 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
#
# taken from
# svn://svn.mplayerhq.hu/dvdnav/trunk/libdvdnav
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import libtools
from pisi.actionsapi import get
def setup():
libtools.libtoolize("--force --install")
autotools.autoreconf("-fi")
autotools.configure("--with-libdvdcss=/usr \
--disable-static")
def build():
autotools.make()
def install():
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
pisitools.dodoc("ChangeLog", "AUTHORS", "README", "TODO")