forked from lotia/homebrew-versions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gst-python010.rb
53 lines (42 loc) · 1.29 KB
/
gst-python010.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
require 'formula'
class GstPython010 < Formula
homepage 'http://gstreamer.freedesktop.org/'
url 'http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.bz2'
sha1 '7012445d921ae1b325c162500750c9b0e777201f'
depends_on 'pkg-config' => :build
depends_on 'homebrew/versions/gst-plugins-base010'
depends_on 'pygtk'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
def caveats; <<-EOS.undent
For non-Homebrew Python, you need to amend your PYTHONPATH like so:
export PYTHONPATH=#{HOMEBREW_PREFIX}/lib/#{which_python}/site-packages:$PYTHONPATH
EOS
end
def which_python
"python" + `python -c 'import sys;print(sys.version[:3])'`.strip
end
test do
(testpath/'test.py').write <<-EOS.undent
#!/usr/bin/env python
import time
import pygst
pygst.require('0.10')
import gst
import gobject
gobject.threads_init()
def main():
pipeline = gst.parse_launch(
'audiotestsrc ! audioresample ! fakesink')
pipeline.set_state(gst.STATE_PLAYING)
time.sleep(3)
if __name__ == "__main__":
main()
EOS
system "chmod +x test.py"
system "./test.py"
end
end