gnome ver. bump

This commit is contained in:
Rmys
2022-11-02 19:49:09 +03:00
parent 1c6fecff39
commit 8366bd193c
45 changed files with 521 additions and 74 deletions
+11 -17
View File
@@ -1,28 +1,22 @@
#!/usr/bin/env 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
# Licensed under the GNU General Public License, version 2.
# See the file http://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
from pisi.actionsapi import mesontools, pisitools, shelltools, get
def setup():
shelltools.export("PYTHON","/usr/bin/python3")
autotools.configure("PYTHON=python3 \
--enable-gtk-doc")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
mesontools.configure()
def build():
autotools.make()
mesontools.build()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*")
shelltools.copytree("%s/usr/share/pkgconfig" % get.installDIR(), "%s/usr/lib/pkgconfig" % get.installDIR())
pisitools.removeDir("/usr/share/pkgconfig")
pisitools.dodoc("AUTHORS", "COPYING", "README*")