Files

25 lines
575 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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools, libtools
def setup():
libtools.gnuconfig_update()
autotools.autoreconf("-if")
shelltools.system("./autogen.sh")
autotools.configure()
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("COPYING", "README.md")