#!/bin/sh
if [ $# -eq 0 ]; then
echo "usage: $0 package_dirname ..."
fi
for i in $*; do
	find /data/slackbuilds -name $i -exec cp -a '{}' /storage/repo/x86_64/slint-14.2.1/source/ ';'
	cd  /storage/repo/x86_64/slint-14.2.1/source/$i
	slintify
	read -p "press Enter to continue" dummy 
done
