aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorBrett Koonce2013-09-28 00:49:10 -0500
committerAdam Vandenberg2013-09-28 08:59:51 -0700
commit50045a01176e64d5ea3c94d76a0d71a917bcecdb (patch)
treed474e178744cc22fb21c80eed0de794618bd96e2 /Library/Formula
parentc06d6be63fdefdeef6867d13035f84442b1b4888 (diff)
downloadhomebrew-50045a01176e64d5ea3c94d76a0d71a917bcecdb.tar.bz2
sxiv 1.1.1
Closes #22902. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sxiv.rb35
1 files changed, 3 insertions, 32 deletions
diff --git a/Library/Formula/sxiv.rb b/Library/Formula/sxiv.rb
index 543c9f442..ac994dc34 100644
--- a/Library/Formula/sxiv.rb
+++ b/Library/Formula/sxiv.rb
@@ -2,30 +2,17 @@ require 'formula'
class Sxiv < Formula
homepage 'https://github.com/muennich/sxiv'
- url 'https://github.com/downloads/muennich/sxiv/sxiv-1.0.tar.gz'
- sha1 'e29e33c38fd2a6c8a2cb3b270776859328aa8e0e'
+ url 'https://github.com/muennich/sxiv/archive/v1.1.1.tar.gz'
+ sha1 'a87a6940936cc1d14c54d5ffe7814980b5511f07'
head 'https://github.com/muennich/sxiv.git'
depends_on :x11
depends_on 'imlib2'
- depends_on 'giflib' => :optional
- depends_on 'libexif' => :optional
-
- # Makefile uses GNU install
- def patches; DATA; end
+ depends_on 'giflib'
def install
system "make", "config.h"
-
- if build.with? "giflib"
- inreplace "config.h", "#define GIF_SUPPORT 0", "#define GIF_SUPPORT 1"
- end
-
- if build.with? "libexif"
- inreplace "config.h", "#define EXIF_SUPPORT 0", "#define EXIF_SUPPORT 1"
- end
-
system "make", "PREFIX=#{prefix}", "install"
end
@@ -33,19 +20,3 @@ class Sxiv < Formula
system "#{bin}/sxiv", "-v"
end
end
-
-__END__
-diff --git a/Makefile b/Makefile
-index 32c644f..0cd8019 100644
---- a/Makefile
-+++ b/Makefile
-@@ -52,7 +52,8 @@ dist: clean
-
- install: all
- @echo "installing executable file to $(DESTDIR)$(PREFIX)/bin"
-- @install -D -m 755 sxiv $(DESTDIR)$(PREFIX)/bin/sxiv
-+ @install -d $(DESTDIR)$(PREFIX)/bin
-+ @install -m 755 sxiv $(DESTDIR)$(PREFIX)/bin/sxiv
- @echo "installing manual page to $(DESTDIR)$(MANPREFIX)/man1"
- @mkdir -p $(DESTDIR)$(MANPREFIX)/man1
- @sed "s/VERSION/$(VERSION)/g" sxiv.1 > $(DESTDIR)$(MANPREFIX)/man1/sxiv.1