2015-04-10 15:40:02 +02:00
|
|
|
#!/bin/sh
|
2015-04-10 00:53:46 +02:00
|
|
|
#
|
2015-04-10 10:59:28 +02:00
|
|
|
# show_files.sh
|
2015-04-10 00:53:46 +02:00
|
|
|
|
2016-03-22 18:08:39 +01:00
|
|
|
[ "$XLINT" ] && exit 0
|
2015-07-14 10:47:06 +02:00
|
|
|
|
2018-05-21 16:04:22 +02:00
|
|
|
export XBPS_TARGET_ARCH="$2"
|
2015-04-20 11:39:39 +02:00
|
|
|
|
2015-04-10 00:53:46 +02:00
|
|
|
for pkg in $(cat /tmp/templates); do
|
|
|
|
for subpkg in $(xsubpkg $pkg); do
|
|
|
|
/bin/echo -e "\x1b[32mFiles of $subpkg:\x1b[0m"
|
2018-05-21 16:04:22 +02:00
|
|
|
xbps-query --repository=$HOME/hostdir/binpkgs -f "$subpkg"
|
2015-04-10 00:53:46 +02:00
|
|
|
done
|
|
|
|
done
|
|
|
|
|