actions.py 353 B

123456789101112131415
  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. def install():
  8. # Install branding icon
  9. fldr = ("icons","lang-all")
  10. for i in fldr:
  11. pisitools.insinto("/usr/share/pixmaps/icons", "%s/*" % i)