actions.py 486 B

1234567891011121314151617181920
  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. from inary.actionsapi import get
  8. def setup():
  9. autotools.configure("--with-vpnc-script=/etc/vpnc/vpnc-script")
  10. def build():
  11. autotools.make()
  12. def install():
  13. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  14. inarytools.dodoc("AUTHORS", "COPYING*")