|
|
@ -1,7 +1,7 @@ |
|
|
#!/bin/bash |
|
|
#!/bin/bash |
|
|
|
|
|
|
|
|
# Slackware build script for yara-python |
|
|
# Slackware build script for yara-python |
|
|
# Copyright 2017 Barry Grundy <bgrundy[at]linuxleo.com> |
|
|
|
|
|
|
|
|
# Copyright 2017-2021 Barry Grundy <bgrundy[at]linuxleo.com> |
|
|
# All rights reserved. |
|
|
# All rights reserved. |
|
|
# |
|
|
# |
|
|
# Redistribution and use of this script, with or without modification, is |
|
|
# Redistribution and use of this script, with or without modification, is |
|
|
@ -21,12 +21,12 @@ |
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
|
# |
|
|
# |
|
|
# New build - v3.5.0, January 2017, Barry J. Grundy. |
|
|
|
|
|
|
|
|
# updated - v4.1.2, August 2021, Barry J. Grundy. |
|
|
|
|
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd) |
|
|
cd $(dirname $0) ; CWD=$(pwd) |
|
|
|
|
|
|
|
|
PRGNAM=yara-python |
|
|
PRGNAM=yara-python |
|
|
VERSION=${VERSION:-3.5.0} |
|
|
|
|
|
|
|
|
VERSION=${VERSION:-4.1.2} |
|
|
BUILD=${BUILD:-1} |
|
|
BUILD=${BUILD:-1} |
|
|
TAG=${TAG:-_SBo} |
|
|
TAG=${TAG:-_SBo} |
|
|
PKGTYPE=${PKGTYPE:-tgz} |
|
|
PKGTYPE=${PKGTYPE:-tgz} |
|
|
@ -82,8 +82,8 @@ find -L . \ |
|
|
|
|
|
|
|
|
export CC="gcc $SLKCFLAGS $(pkg-config --cflags talloc)" |
|
|
export CC="gcc $SLKCFLAGS $(pkg-config --cflags talloc)" |
|
|
|
|
|
|
|
|
python setup.py build --dynamic-linking |
|
|
|
|
|
python setup.py install --root=$PKG |
|
|
|
|
|
|
|
|
python2 setup.py build --dynamic-linking |
|
|
|
|
|
python2 setup.py install --root=$PKG |
|
|
|
|
|
|
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |
|
|
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ |
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |
|
|
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true |
|
|
|