forked from shivammathur/homebrew-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
executable file
·36 lines (32 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# typed: false
# frozen_string_literal: true
require File.expand_path("../Abstract/abstract-php-extension", __dir__)
# Class for Ast Extension
class AstAT71 < AbstractPhpExtension
init
desc "Ast PHP extension"
homepage "https://github.com/nikic/php-ast"
url "https://pecl.php.net/get/ast-1.0.16.tgz"
sha256 "45bda34b780c4661ce77cf65cd8a504fb56526d4b456edcc97d791c86f3879ce"
head "https://github.com/nikic/php-ast.git"
license "BSD-3-Clause"
bottle do
root_url "https://ghcr.io/v2/shivammathur/extensions"
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_monterey: "477e5283b2263c510ad0c9ff38ed5799547999cd0048665e262dba5bf2f5fbf8"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "c0a0439a7ca580fa40ee38e61138225e2fbc487e688c0dbb67ee813a0e11f9ac"
sha256 cellar: :any_skip_relocation, monterey: "caa89a0afd5f41873bcf63ba29cae936409af8f2e03c11d84b262cc47db73753"
sha256 cellar: :any_skip_relocation, big_sur: "b0790c7e79fd426429f8d215d16470dbe87d9c4e556317cc698eed812304a81a"
sha256 cellar: :any_skip_relocation, catalina: "4d42af8e5acfe0c298460e97f40ad4c74f7cd79097a433ca18da81f6beb30ba1"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8e95824496ec04ff89d9dc63abee9db0061a95c10225c6d0a35e81f6a8fb03c9"
end
def install
Dir.chdir "ast-#{version}"
safe_phpize
system "./configure", "--prefix=#{prefix}", phpconfig, "--enable-ast"
system "make"
prefix.install "modules/#{extension}.so"
write_config_file
add_include_files
end
end