#!/bin/sh
# Authors: Brandon Snider.
# This script redirects wodim commands to cdrecord. In case of --version being passed, the script returns a specific string to
# satisfy Brasero.

case "--version" in
     "$@") echo "Cdrecord-yelling-line-to-tell-frontends-to-use-it-like-version 2.01.01a03-dvd
Wodim 1.1.10
Copyright (C) 2006 Cdrkit suite contributors
Based on works from Joerg Schilling, Copyright (C) 1995-2006, J. Schilling" # Pass the version info expected by any app querying Wodim.
        ;;
     *) /usr/bin/cdrecord "$@" # In all other situations, pass all options to cdrecord.
        ;;
esac
