actions.py 371 B

123456789101112131415161718
  1. # -*- coding: utf-8 -*-
  2. #
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/licenses/gpl.txt
  5. from pisi.actionsapi import autotools
  6. from pisi.actionsapi import pisitools
  7. def build():
  8. autotools.make()
  9. def install():
  10. pisitools.dobin("b43-fwcutter")
  11. pisitools.dodoc("COPYING", "README")
  12. pisitools.doman("*.1")