aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libexosip.rb
blob: 4954a1b655f7fe04780ff9fd392b84b3e1ca8c67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Libexosip < Formula
  homepage 'http://www.antisip.com/as/'
  url 'http://download.savannah.gnu.org/releases/exosip/libeXosip2-3.6.0.tar.gz'
  sha1 'a53d699208a22a4edf2d239e1dc3a2f4c1fee0d2'

  depends_on 'pkg-config' => :build
  depends_on 'libosip'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
a id='n26' href='#n26'>26 27 28
## www.pubnub.com - PubNub Real-time push service in the cloud. 
# coding=utf8

## PubNub Real-time Push APIs and Notifications Framework
## Copyright (c) 2010 Stephen Blum
## http://www.pubnub.com/

## -----------------------------------
## PubNub 3.1 Real-time Push Cloud API
## -----------------------------------

import sys
import tornado
sys.path.append('../')
from Pubnub import Pubnub

## -----------------------------------------------------------------------
## Initiate Pubnub State
## -----------------------------------------------------------------------
pubnub = Pubnub( "", "", "", False )

## -----------------------------------------------------------------------
## UUID Example
## -----------------------------------------------------------------------
uuid = pubnub.uuid()
print "UUID: "
print uuid