#!/bin/bash
ulimit -s unlimited
shopt -s extglob

# Slackware build script for virt-manager
# Modified by Brenton Earl <el0226@slackware.com> for Slackware ARM

# Written by Ash Wiren  ash@spooksoftware.com # Released to public domain.
# Modified by Zoran Stojakovic
# Lots of mods by rworkman for 1.x and (later) 2.x

# Record toolchain & other info for the build log:
slackbuildinfo

# Paths to skeleton port's source & real Slackware source tree:
slackset_var_cwds

# Temporary build locations:
export TMPBUILD=$TMP/build-$PKGNAM
export PKG=$TMP/package-$PKGNAM
mkpkgdirs # Delete & re-create temporary directories then cd into $TMPBUILD

# Extract source:
tar xvvf $PORTCWD/$PKGNAM-$VERSION.tar.!(*sign|*asc|*sig|*sha256)
cd $PKGNAM-$VERSION || exit 1
slackhousekeeping

#python3 setup.py configure
#python3 setup.py install --root=$PKG || failinstall

PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
export PYTHONPATH=/opt/python$PYVER/site-packages

mkdir build
cd build
  CFLAGS="$SLKCFLAGS" \
  CXXFLAGS="$SLKCFLAGS" \
  meson .. \
    --buildtype=release \
    --infodir=/usr/info \
    --libdir=/usr/lib${LIBDIRSUFFIX} \
    --localstatedir=/var \
    --mandir=/usr/man \
    --prefix=/usr \
    --sysconfdir=/etc \
    -Dstrip=true \
    -D default-hvs=qemu,lxc
  "${NINJA:=ninja}"
  DESTDIR=$PKG $NINJA install
cd ..






mkdir -p $PKG/usr/doc/$PKGNAM-$VERSION
cp -a \
    CONTRIBUTING.md COPYING INSTALL.md NEWS.md README.md \
    $PKG/usr/doc/$PKGNAM-$VERSION

# Apply generic Slackware packaging policies:
cd $PKG
slackstripall   # strip all .a archives and all ELFs
slack_delete_lafiles # delete usr/lib{,64}/*.la
#slackstriprpaths     # strip rpaths
slackgzpages -i # compress man & info pages and delete usr/info/dir
slackslack      # chown -R root:root, chmod -R og-w, slackchown, slack644docs
slackdesc       # install slack-desc and doinst.sh
slackmp         # run makepkg -l y -c n

# Perform any final checks on the package:
cd $PKG
slackhlinks     # search for any hard links
