#!/bin/sh
set -e

cd "$AUTOPKGTEST_TMP"

cat <<EOF > test1.c
#include <playfield/playfield.h>

bool pf_init_hook(int width, int height)
{
	return true;
}
EOF

gcc test1.c -lstrato -lplayfield
echo "Autopkgtest: OK"
