#!/usr/bin/awk -f

{
	# Read package names one-by-one

	# Suppose we built the package...
	print $0

	# ...succesfully
	print "success"

	# End of task marker, empty line by default
	print ""

	# In the end, stdout must be flushed
	fflush()
}
