#!/bin/bash

# Pull the most recently selected x11 port-specific (ARM) packages
# from the 'x11-portspecificmodules.r2bhelper' script to do a visual check
# of their status (principally the date)
#
source /usr/share/slackdev/buildkit.sh
grep '^build ' x11-portspecificmodules.r2bhelper | awk '{print $2}' | while read pkg ; do
  ls -la $PKGSTORE/x/${pkg}-*.t?z
done

