Files
main/programming/language/perl/perl-XML-SAX/actions.py
T
2017-12-12 23:42:18 +03:00

27 lines
666 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 perlmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir = "%s-%s" % (get.srcNAME()[5:], get.srcVERSION())
def setup():
perlmodules.configure()
def build():
perlmodules.make()
def check():
perlmodules.make("test")
def install():
# pure_install avoids touching system's ParserDetails.ini
# This ini file gets generated/updated on post/preInstall
perlmodules.install("pure_install")