#!/bin/bash

if [ "$1" == "--version" ]; then
    pkg-config --modversion gnutls
else
    pkg-config $1 gnutls
fi
