Files
4fury-c3440d8 9997650e76 poedit.
2021-12-21 06:47:20 +03:00

28 lines
559 B
Python

#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
j = ''.join([
' --with-wx-config=wx-config-gtk3',
' --without-cld2',
' --without-cpprest '
])
def setup():
autotools.configure(j)
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "NEWS")