gnome-control-center, gnome-video-effects, gsound, cheese, gnome-autoar packaged

This commit is contained in:
Berk Çakar
2021-05-29 02:35:03 +03:00
parent 45247fa65b
commit 9b0ec972ba
16 changed files with 1414 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/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 mesontools
from pisi.actionsapi import pisitools
def setup():
mesontools.configure("-Dgtk_doc=false \
-Dman=false")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("README", "COPYING", "AUTHORS", "NEWS", "ChangeLog")