#!/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 '^armx11_' x11-portspecificmodules.r2bhelper | cut -d_ -f2- | while read pkg ; do
  ls -la $PKGSTORE/x/${pkg}-*.t?z
done

