This commit is contained in:
4fury-c3440d8
2020-11-29 21:10:53 +03:00
parent c64451bcc8
commit 5d1eedc419
2 changed files with 80 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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 pisitools
from pisi.actionsapi import scons
from pisi.actionsapi import get
def build():
scons.make("USE_GTK3=True")
def install():
scons.install("install DESTDIR=%s/usr USE_GTK3=True" % get.installDIR())
pisitools.dodoc("LICENSE.txt", "README.md")