Skip to content

Instantly share code, notes, and snippets.

@adzenith
Last active December 16, 2015 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adzenith/5354833 to your computer and use it in GitHub Desktop.
Save adzenith/5354833 to your computer and use it in GitHub Desktop.
Homebrew formula for Orocos KDL
require 'formula'
class OrocosKdl < Formula
homepage 'http://www.orocos.org/kdl'
url 'http://git.mech.kuleuven.be/?p=robotics/orocos_kinematics_dynamics.git;a=snapshot;h=c8301d2719690703f405ce9a286db897e32a8dca;sf=tgz'
sha1 ''
head 'http://git.mech.kuleuven.be/robotics/orocos_kinematics_dynamics.git'
version '1.1.99'
depends_on 'cmake' => :build
def install
cd 'orocos_kdl' do
mkdir 'build' do
system 'pwd'
system 'cmake', '..', *std_cmake_args
system 'make'
system 'make install'
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment