python3-cups:new package for system-config-printer

This commit is contained in:
2017-12-15 16:07:52 +03:00
parent 1e0cd464dc
commit 8f318b848a
3 changed files with 69 additions and 0 deletions
@@ -0,0 +1,19 @@
#!/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 pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
def build():
pisitools.dosed("Makefile", "python", "python3")
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "NEWS", "README", "TODO", "examples/cupstree.py")