Advertisement
Guest User

actions.py

a guest
Sep 2nd, 2012
175
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.49 KB | None | 0 0
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # Licensed under the GNU General Public License, version 3.
  4. # See the file http://www.gnu.org/copyleft/gpl.txt
  5.  
  6. from pisi.actionsapi import autotools
  7. from pisi.actionsapi import get
  8.  
  9. def setup():
  10.     configureOptions = "--enable-animation \
  11.             --disable-static \
  12.             --disable-maintainer-mode"
  13.     autotools.configure(configureOptions)
  14.  
  15. def build():
  16.     autotools.make()
  17.  
  18. def install():
  19.     autotools.rawInstall("DESTDIR=%s" % get.installDIR())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement