15 lines
384 B
Python
15 lines
384 B
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import get
|
|
from pisi.actionsapi import pisitools
|
|
|
|
def install():
|
|
pisitools.insinto("/usr/share/phpldapadmin","*")
|
|
|
|
pisitools.dohtml("*")
|
|
pisitools.dodoc("INSTALL*","VERSION","LICENSE","README*")
|