ClamAV And Gui First Release
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import qt5
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
WorkDir = "ClamAV-GUI/"
|
||||
|
||||
def setup():
|
||||
shelltools.system("qmake-qt5 -r PREFIX=/usr clamav-gui.pro")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("INSTALL_ROOT=%s" % get.installDIR())
|
||||
@@ -0,0 +1,49 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>clamav-gui</Name>
|
||||
<Packager>
|
||||
<Name>Ali Cengiz Kurt</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Packager>
|
||||
<License>GPLv3+</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>ClamAV-Gui.</Summary>
|
||||
<Description>ClamAV-Gui is a graphical interface for ClamAV antivirus software</Description>
|
||||
<License>GPL3</License>
|
||||
<Archive sha1sum="42d282254974e04415e14fbcab279b46b2f8f6a8" type="targz">https://sourceforge.net/projects/pisilinux/files/source/170782-ClamAV-GUI-0.4.1.tar.gz/download</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>clamav-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>clamav-gui</Name>
|
||||
<Icon>clamav-gui</Icon>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>clamav</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="manfile">/usr/share/man</Path>
|
||||
<Path fileType="pofile">/usr/share/clamav-gui</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-12-01</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>First Release.</Comment>
|
||||
<Name>Ali Cengiz Kurt(alick01)</Name>
|
||||
<Email>alicengizkurt@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user