Skip to content

Commit

Permalink
agedu: import from head-only
Browse files Browse the repository at this point in the history
Closes Homebrew#47967.

Signed-off-by: Baptiste Fontaine <[email protected]>
  • Loading branch information
bfontaine committed Jan 12, 2016
1 parent 6538e4d commit 6aff6a5
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
25 changes: 25 additions & 0 deletions Library/Formula/agedu.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
class Agedu < Formula
desc "Unix utility for tracking down wasted disk space"
homepage "http://www.chiark.greenend.org.uk/~sgtatham/agedu/"
url "http://www.chiark.greenend.org.uk/~sgtatham/agedu/agedu-20151213.59b0ed3.tar.gz"
version "20151213"
sha256 "c24eaa0b0e9f9c3474fa6a4aad7baff3b557a82e7b72276b2a557e37afafb612"

head "git://git.tartarus.org/simon/agedu.git"

depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "halibut" => :build

def install
system "./mkauto.sh"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make", "install"
end

test do
system "#{bin}/agedu", "-s", "."
assert (testpath/"agedu.dat").exist?
end
end
1 change: 0 additions & 1 deletion Library/Homebrew/tap_migrations.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
TAP_MIGRATIONS = {
"adobe-air-sdk" => "homebrew/binary",
"afuse" => "homebrew/fuse",
"agedu" => "homebrew/head-only",
"aimage" => "homebrew/boneyard",
"aplus" => "homebrew/boneyard",
"apple-gcc42" => "homebrew/dupes",
Expand Down

0 comments on commit 6aff6a5

Please sign in to comment.