diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2021-02-01 21:53:09 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2021-02-02 08:59:50 +0100 |
commit | 61eaae1fe89a73a5d29f89ed20b94c367419246e (patch) | |
tree | c0e2f1d5c78ee7f6c61ce0ea0f44795eaa8a2efd /source/x | |
parent | 4e53e75339d9a66422c8dcfbfa09a177c3622160 (diff) | |
download | current-61eaae1fe89a73a5d29f89ed20b94c367419246e.tar.gz current-61eaae1fe89a73a5d29f89ed20b94c367419246e.tar.xz |
Mon Feb 1 21:53:09 UTC 202120210201215309
d/python-setuptools-53.0.0-x86_64-1.txz: Upgraded.
kde/digikam-7.1.0-x86_64-3.txz: Rebuilt.
Recompiled against imagemagick-7.0.10_61.
kde/okteta-0.26.5-x86_64-1.txz: Upgraded.
l/dvdauthor-0.7.2-x86_64-3.txz: Rebuilt.
Recompiled against imagemagick-7.0.10_61.
x/libevdev-1.11.0-x86_64-1.txz: Upgraded.
xap/xine-lib-1.2.11-x86_64-3.txz: Rebuilt.
Recompiled against imagemagick-7.0.10_61.
Diffstat (limited to 'source/x')
-rwxr-xr-x | source/x/libevdev/libevdev.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source/x/libevdev/libevdev.SlackBuild b/source/x/libevdev/libevdev.SlackBuild index 10f491bf2..4a124336b 100755 --- a/source/x/libevdev/libevdev.SlackBuild +++ b/source/x/libevdev/libevdev.SlackBuild @@ -3,7 +3,7 @@ # Slackware build script for libevdev # Copyright 2014 Robby Workman, Northport, Alabama, USA -# Copyright 2015, 2018, 2020 Patrick J. Volkerding, Sebeka, MN, USA +# Copyright 2015, 2018, 2020, 2021 Patrick J. Volkerding, Sebeka, MN, USA # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -27,7 +27,7 @@ cd $(dirname $0) ; CWD=$(pwd) PKGNAM=libevdev VERSION=${VERSION:-$(echo $PKGNAM-*.tar.?z | rev | cut -f 3- -d . | cut -f 1 -d - | rev)} -BUILD=${BUILD:-2} +BUILD=${BUILD:-1} if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -94,6 +94,9 @@ make install DESTDIR=$PKG || exit 1 # Don't ship .la files: rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +# Don't ship the static library: +rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.a + 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 |