actions.py 903 B

1234567891011121314151617181920212223242526272829303132
  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. #
  4. # Licensed under the GNU General Public License, version 3.
  5. # See the file http://www.gnu.org/licenses/gpl.txt
  6. from pisi.actionsapi import autotools
  7. from pisi.actionsapi import pisitools
  8. from pisi.actionsapi import get
  9. def setup():
  10. #pisitools.dosed("data/caja.desktop.in*", "Exec=caja", "Exec=caja -n --sync")
  11. autotools.autoreconf("-fiv")
  12. autotools.configure("--disable-static \
  13. --libexecdir=/usr/lib/caja \
  14. --enable-introspection \
  15. --disable-update-mimedb \
  16. --disable-schemas-compile")
  17. # for fix unused dependency
  18. pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.rawInstall("DESTDIR=%s" % get.installDIR())
  23. pisitools.dodoc("README","NEWS")