mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-06 06:22:29 +00:00
097ca31255
Original commit message from CVS: first working version of helloworld in perl no eos signal callback yet some wrapper functions
8 lines
124 B
Bash
Executable file
8 lines
124 B
Bash
Executable file
#!/bin/bash
|
|
if test ! -e Gst.so
|
|
then
|
|
ln -s blib/arch/auto/Gst/Gst.so
|
|
fi
|
|
swig -perl5 Gst.i && \
|
|
perl Makefile.PL && \
|
|
make
|