actions.py 845 B

12345678910111213141516171819202122
  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 pisitools
  7. from pisi.actionsapi import get
  8. def install():
  9. pisitools.dobin("LateefGR-Regular.ttf", "/usr/share/fonts/sil-lateef")
  10. pisitools.dodoc("OFL.txt", "OFL-FAQ.txt", "README.txt", "FONTLOG.txt")
  11. pisitools.dobin("./documentation/*.pdf", "/usr/share/sil-lateef/documentation")
  12. pisitools.dobin("./documentation/*.odt", "/usr/share/sil-lateef/documentation")
  13. pisitools.dobin("./documentation/*.txt", "/usr/share/sil-lateef/documentation")
  14. pisitools.dobin("./web/*.html", "/usr/share/sil-lateef/web")
  15. pisitools.dobin("./web/*.css", "/usr/share/sil-lateef/web")
  16. pisitools.dobin("./web/*.woff", "/usr/share/sil-lateef/web")