tepl:new package

This commit is contained in:
2021-06-03 09:55:39 +03:00
parent a2807afe05
commit bc24dc77c9
3 changed files with 103 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 2
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import mesontools, pisitools
def setup():
mesontools.configure()
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("NEWS", "README*")