libbluray:moved into main for pisi 2.0

This commit is contained in:
2015-07-22 16:05:35 +03:00
parent 99dbc7c118
commit f4dca5a36d
3 changed files with 130 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
shelltools.export("JAVA_HOME","/usr/lib/jvm/java-7-openjdk")
def setup():
autotools.autoreconf("-vif")
autotools.configure("--disable-static \
--disable-bdjava")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "ChangeLog", "README.*")