Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #2630 from mariux64/fix-race-clamav
clamav: fix unit test race condition
  • Loading branch information
wwwutz committed Apr 13, 2022
2 parents 43ba12a + 71a898f commit f4d569c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions clamav.be0
@@ -1,18 +1,18 @@
#!/usr/bin/env beesh

# BEE_VERSION clamav-0.104.2-0
# BEE_VERSION clamav-0.104.2-1

# SRCURL[0]="https://www.clamav.net/downloads/production/clamav-${PKGVERSION}.tar.gz"
SRCURL[0]="https://beehive.molgen.mpg.de/ad099675f2c09c07850e36496b06c552/clamav-0.104.2.tar.gz"

# PATCHURL+=()
PATCHURL+=("https://beehive.molgen.mpg.de/96618bb8d05ae1995275837564c7c2c6/clamav-01042-fix-test-race.patch")

# build_in_sourcedir

# sourcesubdir_append src

#mee_extract() {
# bee_extract "${@}"
# bee_extract "${@}"q
#}

#mee_patch() {
Expand All @@ -21,14 +21,15 @@ SRCURL[0]="https://beehive.molgen.mpg.de/ad099675f2c09c07850e36496b06c552/clamav

mee_configure() {
bee_configure \
-D ENABLE_MILTER=OFF \
-D APP_CONFIG_DIRECTORY=/etc
-D ENABLE_MILTER=OFF \
-D APP_CONFIG_DIRECTORY=/etc
}

#mee_build() {
# bee_build
#}

#mee_install() {
# bee_install
#}
mee_install() {
bee_install
cd ${D} && rm -rvf usr/share/doc
}

0 comments on commit f4d569c

Please sign in to comment.