26 lines
662 B
Python
26 lines
662 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 shelltools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
#WorkDir = "tidy-%s" % get.srcVERSION().split("_", 1)[1]
|
|
|
|
def setup():
|
|
#shelltools.system("sh build/gnuauto/setup.sh")
|
|
autotools.configure("--disable-static \
|
|
--includedir=%s/usr/include/tidy " % get.installDIR())
|
|
|
|
def build():
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.install()
|
|
|
|
#pisitools.dodoc("readme.txt")
|