7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
16 lines
351 B
Ruby
16 lines
351 B
Ruby
require 'formula'
|
|
|
|
class Fbida <Formula
|
|
url 'http://dl.bytesex.org/releases/fbida/fbida-2.07.tar.gz'
|
|
homepage 'http://linux.bytesex.org/fbida/'
|
|
md5 '3e05910fb7c1d9b2bd3e272d96db069c'
|
|
|
|
depends_on 'libexif'
|
|
depends_on 'jpeg'
|
|
|
|
def install
|
|
system "make"
|
|
bin.install 'exiftran'
|
|
man1.install 'exiftran.man' => 'exiftran.1'
|
|
end
|
|
end
|