milis/talimatname/genel/c/clamav/talimat

30 lines
686 B
Plaintext
Raw Normal View History

2017-10-27 20:46:27 +02:00
# Tanım: GPL virus tarayicisi
2016-02-24 01:27:23 +01:00
# URL: http://www.clamav.net/
2017-10-27 20:46:27 +02:00
# Paketçi: milisarge
# Gerekler: zlib bzip2 gmp curl
2016-02-24 01:27:23 +01:00
name=clamav
version=0.99.0
release=1
source=(http://www.clamav.net/downloads/production/$name-${version%.*}.tar.gz \
clamd.conf freshclam.conf clamd freshclam)
2017-10-27 23:59:41 +02:00
derle() {
2016-02-24 01:27:23 +01:00
cd $name-${version%.*}
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-id-check \
--with-libcurl \
--with-tcpwrappers
make
make DESTDIR=$PKG install
mkdir -p $PKG/var/run/$name $PKG/var/log/$name
install -o root -g root -m 0644 $SRC/{clamd,freshclam}.conf \
$PKG/etc/
install -d $PKG/etc/rc.d
install -o root -g root -m 0755 $SRC/{clamd,freshclam} \
$PKG/etc/rc.d/
}