mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Cmake 4.0.1 => 4.0.2 * Adjust cmake build options to properly set LIBRARY_PATH. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust cmake build options. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Remove 'mold -run' usage as that confuses LIBRARY_PATH overrides. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake * Confirm autotools change works with nano update. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to update-cmake * Add built packages for linux/amd64 to update-cmake * Add built packages for linux/arm/v7 to update-cmake --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Ed Reel <edreel@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
195 lines
6.8 KiB
Ruby
195 lines
6.8 KiB
Ruby
require 'package'
|
|
|
|
class Php74 < Package
|
|
description 'PHP is a popular general-purpose scripting language that is especially suited to web development.'
|
|
homepage 'https://www.php.net/'
|
|
version '7.4.33-1'
|
|
license 'PHP-3.01'
|
|
compatibility 'aarch64 armv7l x86_64'
|
|
source_url 'https://www.php.net/distributions/php-7.4.33.tar.xz'
|
|
source_sha256 '924846abf93bc613815c55dd3f5809377813ac62a9ec4eb3778675b82a27b927'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'c6d0341c39053efa64ebb9b0056ed5c8c066f827fe854fb6b3164f978208d42c',
|
|
armv7l: 'c6d0341c39053efa64ebb9b0056ed5c8c066f827fe854fb6b3164f978208d42c',
|
|
x86_64: '3556beb44da6b3c292425c0f06c2fb2cf55b60880e752bf2f7a46f333c789b83'
|
|
})
|
|
|
|
depends_on 'aspell_en'
|
|
depends_on 'aspell' # R
|
|
depends_on 'brotli' # R
|
|
depends_on 'bzip2' # R
|
|
depends_on 'c_ares' # R
|
|
depends_on 'curl'
|
|
depends_on 'e2fsprogs' # R
|
|
depends_on 'exif'
|
|
depends_on 'freetds'
|
|
depends_on 'freetype'
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'gdbm' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'gmp' # R
|
|
depends_on 'graphite'
|
|
depends_on 'icu4c' # R
|
|
depends_on 'krb5' # R
|
|
depends_on 'libcyrussasl' # R
|
|
depends_on 'libedit' # R
|
|
depends_on 'libffi' # R
|
|
depends_on 'libgcrypt'
|
|
depends_on 'libgpg_error' # R
|
|
depends_on 'libidn2' # R
|
|
depends_on 'libjpeg_turbo'
|
|
depends_on 'libnghttp2' # R
|
|
depends_on 'libpng'
|
|
depends_on 'libpsl' # R
|
|
depends_on 'libsodium'
|
|
depends_on 'libssh' # R
|
|
depends_on 'libtool' # R
|
|
depends_on 'libunistring' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'libxpm'
|
|
depends_on 'libxslt'
|
|
depends_on 'libzip'
|
|
depends_on 'ncurses' # R
|
|
depends_on 'oniguruma'
|
|
depends_on 'openldap' # R
|
|
depends_on 'openssl111'
|
|
depends_on 'openssl' # R
|
|
depends_on 'py3_pygments'
|
|
depends_on 're2c'
|
|
depends_on 'sqlite' # R
|
|
depends_on 'tidy'
|
|
depends_on 'unixodbc'
|
|
depends_on 'zlib' # R
|
|
depends_on 'zstd' # R
|
|
|
|
no_fhs
|
|
|
|
def self.preflight
|
|
phpver = `php -v 2> /dev/null | head -1 | cut -d' ' -f2`.chomp
|
|
abort "PHP version #{phpver} already installed.".lightgreen if ARGV[0] != 'reinstall' && @_ver != phpver && !phpver.empty?
|
|
end
|
|
|
|
def self.patch
|
|
# Configuration
|
|
system "sed -i 's,;pid = run/php-fpm.pid,pid = #{CREW_PREFIX}/tmp/run/php-fpm.pid,' sapi/fpm/php-fpm.conf.in"
|
|
system "sed -i 's,;error_log = log/php-fpm.log,error_log = #{CREW_PREFIX}/log/php-fpm.log,' sapi/fpm/php-fpm.conf.in"
|
|
system "sed -i 's,include=@php_fpm_sysconfdir@/php-fpm.d,include=#{CREW_PREFIX}/etc/php-fpm.d,' sapi/fpm/php-fpm.conf.in"
|
|
system "sed -i 's,^user,;user,' sapi/fpm/www.conf.in"
|
|
system "sed -i 's,^group,;group,' sapi/fpm/www.conf.in"
|
|
system "sed -i 's,@sbindir@,#{CREW_PREFIX}/bin,' sapi/fpm/init.d.php-fpm.in"
|
|
system "sed -i 's,@sysconfdir@,#{CREW_PREFIX}/etc,' sapi/fpm/init.d.php-fpm.in"
|
|
system "sed -i 's,@localstatedir@,#{CREW_PREFIX}/tmp,' sapi/fpm/init.d.php-fpm.in"
|
|
# Set some sane defaults
|
|
system "sed -i 's,post_max_size = 8M,post_max_size = 128M,' php.ini-development"
|
|
system "sed -i 's,upload_max_filesize = 2M,upload_max_filesize = 128M,' php.ini-development"
|
|
system "sed -i 's,;opcache.enable=0,opcache.enable=1,' php.ini-development"
|
|
# Fix cc: error: ext/standard/.libs/type.o: No such file or directory
|
|
# system "sed -i '98303d' configure"
|
|
# system "sed -i '98295,98296d' configure"
|
|
# Fix /usr/bin/file: No such file or directory
|
|
system 'filefix'
|
|
end
|
|
|
|
def self.build
|
|
system "CFLAGS='-pipe' ./configure \
|
|
--prefix=#{CREW_PREFIX} \
|
|
--docdir=#{CREW_PREFIX}/doc \
|
|
--infodir=#{CREW_PREFIX}/info \
|
|
--libdir=#{CREW_LIB_PREFIX} \
|
|
--localstatedir=#{CREW_PREFIX}/var \
|
|
--mandir=#{CREW_MAN_PREFIX} \
|
|
--sbindir=#{CREW_PREFIX}/bin \
|
|
--with-config-file-path=#{CREW_PREFIX}/etc \
|
|
--with-libdir=#{ARCH_LIB} \
|
|
--with-kerberos=#{CREW_LIB_PREFIX} \
|
|
--with-pear=#{CREW_LIB_PREFIX}/php \
|
|
--with-zlib-dir=#{CREW_LIB_PREFIX} \
|
|
--enable-bcmath \
|
|
--enable-calendar \
|
|
--enable-dba=shared \
|
|
--enable-exif \
|
|
--enable-fpm \
|
|
--enable-ftp \
|
|
--enable-gd \
|
|
--enable-intl \
|
|
--enable-mbstring \
|
|
--enable-mysqlnd \
|
|
--enable-opcache \
|
|
--enable-pcntl \
|
|
--enable-shared \
|
|
--enable-shmop \
|
|
--enable-soap \
|
|
--enable-sockets \
|
|
--enable-sysvmsg \
|
|
--with-bz2 \
|
|
--with-curl \
|
|
--with-ffi \
|
|
--with-freetype \
|
|
--with-gdbm \
|
|
--with-gettext \
|
|
--with-gmp \
|
|
--with-jpeg \
|
|
--with-ldap \
|
|
--with-ldap-sasl \
|
|
--with-libedit \
|
|
--with-mysqli \
|
|
--with-openssl \
|
|
--with-pdo-mysql \
|
|
--with-pspell \
|
|
--with-readline \
|
|
--with-sodium \
|
|
--with-tidy \
|
|
--with-unixODBC \
|
|
--with-xmlrpc \
|
|
--with-xsl \
|
|
--with-zip"
|
|
system 'make'
|
|
end
|
|
|
|
def self.check
|
|
# system 'make', 'test'
|
|
end
|
|
|
|
def self.install
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/bin"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/tmp/run"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/init.d"
|
|
FileUtils.mkdir_p "#{CREW_DEST_PREFIX}/etc/php-fpm.d"
|
|
system 'make', "INSTALL_ROOT=#{CREW_DEST_DIR}", 'install'
|
|
FileUtils.install 'php.ini-development', "#{CREW_DEST_PREFIX}/etc/php.ini", mode: 0o644
|
|
FileUtils.install 'sapi/fpm/init.d.php-fpm.in', "#{CREW_DEST_PREFIX}/etc/init.d/php-fpm", mode: 0o755
|
|
FileUtils.install 'sapi/fpm/php-fpm.conf.in', "#{CREW_DEST_PREFIX}/etc/php-fpm.conf", mode: 0o755
|
|
FileUtils.install 'sapi/fpm/www.conf.in', "#{CREW_DEST_PREFIX}/etc/php-fpm.d/www.conf", mode: 0o644
|
|
FileUtils.ln_s "#{CREW_PREFIX}/etc/init.d/php-fpm", "#{CREW_DEST_PREFIX}/bin/php7-fpm"
|
|
|
|
# clean up some files created under #{CREW_DEST_DIR}. check http://pear.php.net/bugs/bug.php?id=20383 for more details
|
|
FileUtils.mv "#{CREW_DEST_PREFIX}/php/php/fpm", "#{CREW_DEST_LIB_PREFIX}/php"
|
|
FileUtils.mv "#{CREW_DEST_DIR}/.depdb", "#{CREW_DEST_LIB_PREFIX}/php"
|
|
FileUtils.mv "#{CREW_DEST_DIR}/.depdblock", "#{CREW_DEST_LIB_PREFIX}/php"
|
|
FileUtils.rm_rf "#{CREW_DEST_DIR}/.channels"
|
|
FileUtils.rm_rf "#{CREW_DEST_DIR}/.filemap"
|
|
FileUtils.rm_rf "#{CREW_DEST_DIR}/.lock"
|
|
FileUtils.rm_rf "#{CREW_DEST_DIR}/.registry"
|
|
end
|
|
|
|
def self.postinstall
|
|
puts
|
|
puts 'To start the php-fpm service, execute:'.lightblue
|
|
puts 'php7-fpm start'.lightblue
|
|
puts
|
|
puts 'To stop the php-fpm service, execute:'.lightblue
|
|
puts 'php7-fpm stop'.lightblue
|
|
puts
|
|
puts 'To restart the php-fpm service, execute:'.lightblue
|
|
puts 'php7-fpm restart'.lightblue
|
|
puts
|
|
puts 'To start php-fpm on login, execute the following:'.lightblue
|
|
puts "echo 'if [ -f #{CREW_PREFIX}/bin/php7-fpm ]; then' >> ~/.bashrc".lightblue
|
|
puts "echo ' #{CREW_PREFIX}/bin/php7-fpm start' >> ~/.bashrc".lightblue
|
|
puts "echo 'fi' >> ~/.bashrc".lightblue
|
|
puts 'source ~/.bashrc'.lightblue
|
|
end
|
|
end
|