btyacc:deps for firebird

This commit is contained in:
2016-03-10 17:49:16 +02:00
parent f99516216e
commit 2f6727ba45
4 changed files with 108 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
# -*- 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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
WorkDir = "."
def setup():
pisitools.dosed("main.c", "len + 13", "len + 14")
def build():
autotools.make()
def install():
pisitools.dobin("btyacc")
pisitools.newman("manpage", "btyacc.1")
pisitools.dodoc("README*")