22 lines
559 B
Bash
Executable file
22 lines
559 B
Bash
Executable file
#!/bin/sh
|
|
|
|
## live-config(7) - System Configuration Scripts
|
|
## Copyright (C) 2006-2013 Daniel Baumann <daniel@debian.org>
|
|
##
|
|
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
|
|
## This is free software, and you are welcome to redistribute it
|
|
## under certain conditions; see COPYING for details.
|
|
|
|
|
|
GStreamerSharp ()
|
|
{
|
|
|
|
if [ -e /usr/lib/cli/gstreamer-sharp-0.9/libgstreamersharpglue-0.10.so ]
|
|
then
|
|
cp /usr/lib/cli/gstreamer-sharp-0.9/libgstreamersharpglue-0.10.so /usr/lib/mono/gac/gstreamer-sharp/*/
|
|
fi
|
|
|
|
return
|
|
}
|
|
|
|
GStreamerSharp
|