Files
main/programming/library/yaml-cpp/actions.py
T
2015-09-05 17:25:50 +03:00

19 lines
356 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 pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.install()