31 lines
987 B
Python
31 lines
987 B
Python
#!/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
|
|
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import get
|
|
|
|
def setup():
|
|
if get.buildTYPE() == "emul32":
|
|
pisitools.dosed("configure.ac", "(.*OC_X86_64_ASM.*)", r"#\1")
|
|
shelltools.system("./autogen.sh")
|
|
autotools.configure("--enable-shared \
|
|
--enable-encode \
|
|
--disable-dependency-tracking \
|
|
--disable-spec \
|
|
--disable-sdltest \
|
|
--disable-examples \
|
|
--disable-static")
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall('DESTDIR="%s" docdir=/%s/libtheora' % (get.installDIR(), get.docDIR()))
|
|
|
|
pisitools.dodoc("README", "AUTHORS", "CHANGES")
|