evolution-data-server, folks, gnome-bluetooth, gnome-session, python3-dbusmock packaged

This commit is contained in:
Berk Çakar
2021-05-28 02:59:49 +03:00
parent 727383d21f
commit 1896a6b8da
15 changed files with 689 additions and 0 deletions
@@ -0,0 +1,38 @@
#!/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
#
# TODO: ADD GDATA AND GNOME ONLINE ACCOUNTS SUPPORT
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DSYSCONF_INSTALL_DIR=/etc \
-DENABLE_VALA_BINDINGS=ON \
-DENABLE_INSTALLED_TESTS=ON \
-DENABLE_GOOGLE=OFF \
-DENABLE_GOOGLE_AUTH=OFF \
-DWITH_OPENLDAP=OFF \
-DWITH_KRB5=ON \
-DENABLE_INTROSPECTION=ON \
-DENABLE_CANBERRA=ON \
-DENABLE_WEATHER=ON \
-DENABLE_GTK=ON \
-DENABLE_GTK_DOC=OFF \
-DENABLE_OAUTH2=ON \
-DENABLE_GOA=OFF \
-DWITH_SYSTEMDUSERUNITDIR=NO")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "ChangeLog", "HACKING", "MAINTAINERS", "NEWS", "README")