Files
main/network/misc/freerdp/actions.py
T
alihanozturk 723e3138d4 freerdp:update
2016-06-14 00:20:55 +03:00

26 lines
611 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
def setup():
cmaketools.configure("-DCMAKE_SKIP_RPATH=ON \
-DWITH_LIBSYSTEMD=OFF \
-DCMAKE_INSTALL_LIBDIR=lib")
def build():
cmaketools.make()
def check():
pass
def install():
#cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
cmaketools.install()
pisitools.dodoc("LICENSE", "README", )