actions.py 897 B

1234567891011121314151617181920212223242526272829
  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. autotools.configure("--with-libxml2 \
  11. --with-expat \
  12. --without-gssapi \
  13. --without-libproxy \
  14. --with-ssl=openssl \
  15. --with-ca-bundle=/etc/pki/tls/certs/ca-bundle.crt \
  16. --enable-threadsafe-ssl=posix \
  17. --enable-shared \
  18. --disable-static")
  19. def build():
  20. autotools.make()
  21. def install():
  22. autotools.install()
  23. pisitools.dodoc("THANKS", "TODO", "ChangeLog", "AUTHORS", "BUGS", "NEWS", "README.md", "doc/*.txt")