aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/webfs.rb
blob: bfc8d81cf90cd699d4feaabe5d6d8967bb83ae0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Webfs < Formula
  url 'http://dl.bytesex.org/releases/webfs/webfs-1.21.tar.gz'
  homepage 'http://linux.bytesex.org/misc/webfs.html'
  md5 '6dc125fe160479404147e7bbfc781dbc'

  def patches
    {:p0 => "http://svn.macports.org/repository/macports/trunk/dports/www/webfs/files/patch-ls.c"}
  end

  def install
    ENV["prefix"]=prefix
    system "make install mimefile=/etc/apache2/mime.types"
  end
end