12345678910111213141516171819 |
- #!/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 shelltools
- from pisi.actionsapi import get
- def build():
- shelltools.system("%s %s -o bchunk bchunk.c" % (get.CC(), get.CFLAGS()))
- def install():
- pisitools.dobin("bchunk")
- pisitools.doman("bchunk.1")
- pisitools.dodoc("README", "COPYING", "ChangeLog")
|