Files
2017-03-29 23:25:45 +03:00

34 lines
1.2 KiB
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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
WorkDir = "igerman98-20161207"
def build():
autotools.make("hunspell/de_AT_small.dic hunspell/de_AT.aff hunspell/de_CH_small.dic hunspell/de_CH.aff hunspell/de_DE.aff")
shelltools.cd("hunspell")
for f in ("README_de_AT.txt", "README_de_CH.txt", "README_de_DE.txt"):
pisitools.dosed(f, "\r")
def install():
shelltools.cd("hunspell")
pisitools.insinto("/usr/share/hunspell", "*.dic")
pisitools.insinto("/usr/share/hunspell", "*.aff")
pisitools.dosym("de_DE.dic", "/usr/share/hunspell/de_BE.dic")
pisitools.dosym("de_DE.aff", "/usr/share/hunspell/de_BE.aff")
pisitools.dosym("de_DE.dic", "/usr/share/hunspell/de_LU.dic")
pisitools.dosym("de_DE.aff", "/usr/share/hunspell/de_LU.aff")
pisitools.dosym("de_CH.dic", "/usr/share/hunspell/de_LI.dic")
pisitools.dosym("de_CH.aff", "/usr/share/hunspell/de_LI.aff")
pisitools.dodoc("README*", "COPYING*")