12345678910111213141516171819202122232425262728293031323334353637383940 |
- #!/usr/bin/python
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file https://www.gnu.org/licenses/gpl-3.0.txt
- from pisi.actionsapi import shelltools, mesontools, cmaketools, pisitools, get
- j = ''.join([
- ' -DCMAKE_BUILD_TYPE=None',
- ' -DENABLE_EXAMPLES=ON',
- ' -DENABLE_MILTER=OFF',
- ' -DENABLE_SYSTEMD=OFF',
- ' -DAPP_CONFIG_DIRECTORY=/etc/clamav',
- ' -DDATABASE_DIRECTORY=/var/lib/clamav',
- ' -B_build -G Ninja -L '
- ])
- def setup():
- shelltools.export("CFLAGS", "%s -I/usr/include/iconv " % get.CFLAGS())
- cmaketools.configure(j)
- def build():
- mesontools.build("-C _build")
- def check():
- # failed utf16 to utf8 converting
- #pass
- mesontools.build("-C _build test")
- def install():
- mesontools.install("-C _build install")
- #pisitools.dodir("/run/clamav")
- pisitools.dodir("/var/lib/clamav")
- #pisitools.dodir("/var/log/clamav")
- for t in shelltools.ls("%s/etc/clamav" % get.installDIR()):
- pisitools.rename("/etc/clamav/%s" % t, t.replace(".sample", ""))
|