actions.py 377 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 inary.actionsapi import autotools
  6. from inary.actionsapi import inarytools
  7. def build():
  8. autotools.make()
  9. def install():
  10. inarytools.dobin("b43-fwcutter")
  11. inarytools.dodoc("COPYING", "README")
  12. inarytools.doman("*.1")