20 lines
502 B
Ruby
20 lines
502 B
Ruby
class DyldHeaders < Formula
|
|
desc "Header files for the dynamic linker"
|
|
homepage "https://opensource.apple.com/"
|
|
url "https://opensource.apple.com/tarballs/dyld/dyld-750.6.tar.gz"
|
|
sha256 "4fd378cf30718e0746c91b145b90ddfcaaa4c0bf01158d0461a4e092d7219222"
|
|
|
|
livecheck do
|
|
url "https://opensource.apple.com/tarballs/dyld/"
|
|
regex(/href=.*?dyld[._-]v?(\d+(?:\.\d+)+)\.t/i)
|
|
end
|
|
|
|
bottle :unneeded
|
|
|
|
keg_only :provided_by_macos
|
|
|
|
def install
|
|
include.install Dir["include/*"]
|
|
end
|
|
end
|