Files
main/programming/library/fmt/actions.py
T
4fury-c3440d8 9f3fd6b21c fmt, mpd.
2021-10-17 13:57:37 +03:00

21 lines
492 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 pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure("-DCMAKE_INSTALL_LIBDIR=lib -L")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README*", "LICENSE*")