Skip to content

Commit

Permalink
Minor changes£
Browse files Browse the repository at this point in the history
  • Loading branch information
wedesoft committed Oct 5, 2010
1 parent 6b1d456 commit 7e25b10
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require 'rake/loaders/makefile'
require 'rbconfig'

PKG_NAME = 'hornetseye-ffmpeg'
PKG_VERSION = '0.3.1'
PKG_VERSION = '0.3.2'
CXX = ENV[ 'CXX' ] || 'g++'
STRIP = ENV[ 'STRIP' ] || 'strip'
RB_FILES = FileList[ 'lib/**/*.rb' ]
Expand Down Expand Up @@ -116,7 +116,7 @@ begin
s.rdoc_options = %w{--no-private}
s.add_dependency %<malloc>, [ '~> 1.1' ]
s.add_dependency %<multiarray>, [ '~> 0.6' ]
s.add_dependency %<hornetseye-frame>, [ '~> 0.2' ]
s.add_dependency %<hornetseye-frame>, [ '~> 0.3' ]
s.add_development_dependency %q{rake}
end
GEM_SOURCE = "#{PKG_NAME}-#{PKG_VERSION}.gem"
Expand All @@ -139,7 +139,7 @@ begin
s.rdoc_options = %w{--no-private}
s.add_dependency %<malloc>, [ '~> 1.1' ]
s.add_dependency %<multiarray>, [ '~> 0.6' ]
s.add_dependency %<hornetseye-frame>, [ '~> 0.2' ]
s.add_dependency %<hornetseye-frame>, [ '~> 0.3' ]
end
GEM_BINARY = "#{PKG_NAME}-#{PKG_VERSION}-#{$BINSPEC.platform}.gem"
desc "Build the gem file #{GEM_SOURCE}"
Expand Down Expand Up @@ -179,5 +179,5 @@ end
import ".depends.mf"

CLEAN.include 'ext/*.o'
CLOBBER.include SO_FILE, 'doc', '.yardoc'
CLOBBER.include SO_FILE, 'doc', '.yardoc', '.depends.mf'

1 change: 0 additions & 1 deletion TODO

This file was deleted.

3 changes: 1 addition & 2 deletions ext/avinput.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ extern "C" {
#include <libswscale/swscale.h>
#include <libavformat/avformat.h>
}
#undef RSHIFT
#include <ruby.h>
#include "rubyinc.hh"
#include "error.hh"
#include "frame.hh"

Expand Down
3 changes: 1 addition & 2 deletions ext/avoutput.hh
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,7 @@ extern "C" {
#include <libswscale/swscale.h>
#include <libavformat/avformat.h>
}
#undef RSHIFT
#include <ruby.h>
#include "rubyinc.hh"
#include "error.hh"
#include "frame.hh"

Expand Down
2 changes: 1 addition & 1 deletion ext/frame.hh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#define FRAME_HH

#include <boost/smart_ptr.hpp>
#include <ruby.h>
#include "rubyinc.hh"
#include <string>

class Frame
Expand Down

0 comments on commit 7e25b10

Please sign in to comment.