Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 22nd, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 7  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 2.
  5. # See the file http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
  6.  
  7. from pisi.actionsapi import shelltools
  8. from pisi.actionsapi import kde4
  9. from pisi.actionsapi import get
  10.  
  11. shelltools.export("HOME", get.workDIR())
  12.  
  13. def setup():
  14.     kde4.configure()
  15.  
  16. def build():
  17.     kde4.make()
  18.  
  19. def install():
  20.     kde4.install()