#!/bin/sh
# see: dh_installdeb(1)

set -e

case "$1" in
    configure)

    add-apt-repository -y ppa:rvm/smplayer
    apt update
    ;;

    abort-upgrade|abort-remove|abort-deconfigure)
    ;;

    *)
        echo "postinst called with unknown argument \`$1'" >&2
        exit 1
    ;;
esac

exit 0
