diff options
Diffstat (limited to 'libraries/libslirp/libslirp.SlackBuild')
-rw-r--r-- | libraries/libslirp/libslirp.SlackBuild | 45 |
1 files changed, 36 insertions, 9 deletions
diff --git a/libraries/libslirp/libslirp.SlackBuild b/libraries/libslirp/libslirp.SlackBuild index 36089f4bb3..23d0cc5d5c 100644 --- a/libraries/libslirp/libslirp.SlackBuild +++ b/libraries/libslirp/libslirp.SlackBuild @@ -22,13 +22,29 @@ # OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# Changelog for libslirp SlackBuild Script +# ---------------------------------------------------------------------------------- + +# 03/09/2022: Added to slackbuilds.org + +# 17/12/2022: Issues in the script were fixed. + +# 29/04/2023: updated to version 4.7. Valgrind is an optional dependency for libslirp + +# 16/05/2024: updated to version 4.8.0 + +# 31/01/2025: updated to version 4.9.0 + +# ----------------------------------------------------------------------------------- + cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libslirp -VERSION=${VERSION:-4.8.0} +VERSION=${VERSION:-4.9.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} +nprocr=$(expr $(nproc) + 1) if [ -z "$ARCH" ]; then case "$( uname -m )" in @@ -79,17 +95,28 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ +PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])') +export PYTHONPATH=/opt/python$PYVER/site-packages -meson build -cd build -meson configure -Dprefix=/usr -DESTDIR=$PKG ninja install -cd .. +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" meson setup build $TMP/$PRGNAM-v$VERSION \ + -Dprefix=/usr \ + -Dlibdir=/usr/lib${LIBDIRSUFFIX} \ + -Dlocalstatedir=/var \ + -Dmandir=/usr/man \ + -Dsysconfdir=/etc \ + -Dincludedir=/usr/include \ + -Ddatadir=/usr/share \ + -Dsbindir=/usr/sbin \ + -Dlibexecdir=/usr/libexec \ + -Dbuildtype=release \ + -Dstrip=true + +ninja -j$nprocr -C build +DESTDIR=$PKG ninja -C build install # Don't ship .la files: -rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la +rm -f $PKG/usr/lib${LIBDIRSUFFIX}/*.la find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \ | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true |