mate:mate-desktop is ready for Pisi Linux

This commit is contained in:
2020-02-28 09:53:26 +03:00
parent 5724dca45e
commit dc46cd4761
162 changed files with 225598 additions and 213916 deletions
+27
View File
@@ -0,0 +1,27 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.export("PYTHON","python3.6")
autotools.configure("--prefix=/usr \
--disable-scrollkeeper \
--disable-schemas-install")
# for fix unused dependency
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("README", "NEWS", "ChangeLog", "AUTHORS", "COPYING")