Introduced rpm packages building tools.
This commit is contained in:
49
pkg/rpm/Makefile.php
Normal file
49
pkg/rpm/Makefile.php
Normal file
@@ -0,0 +1,49 @@
|
||||
MODULES+= php
|
||||
|
||||
MODULE_SUMMARY_php= PHP module for NGINX Unit
|
||||
|
||||
MODULE_VERSION_php= $(VERSION)
|
||||
MODULE_RELEASE_php= 1
|
||||
|
||||
MODULE_CONFARGS_php= php
|
||||
MODULE_MAKEARGS_php= php
|
||||
MODULE_INSTARGS_php= php-install
|
||||
|
||||
MODULE_SOURCES_php= unit.example-php-app \
|
||||
unit.example-php-config
|
||||
|
||||
BUILD_DEPENDS+= php-devel php-embedded
|
||||
|
||||
define MODULE_PREINSTALL_php
|
||||
%{__mkdir} -p %{buildroot}%{_datadir}/doc/unit-php/examples/phpinfo-app
|
||||
%{__install} -m 644 -p %{SOURCE100} \
|
||||
%{buildroot}%{_datadir}/doc/unit-php/examples/phpinfo-app/index.php
|
||||
%{__install} -m 644 -p %{SOURCE101} \
|
||||
%{buildroot}%{_datadir}/doc/unit-php/examples/unit.config
|
||||
endef
|
||||
export MODULE_PREINSTALL_php
|
||||
|
||||
define MODULE_FILES_php
|
||||
%{_libdir}/unit/modules/*
|
||||
%{_libdir}/unit/debug-modules/*
|
||||
endef
|
||||
export MODULE_FILES_php
|
||||
|
||||
define MODULE_POST_php
|
||||
cat <<BANNER
|
||||
----------------------------------------------------------------------
|
||||
|
||||
The $(MODULE_SUMMARY_php) has been installed.
|
||||
|
||||
To check out the sample app, run these commands:
|
||||
|
||||
sudo service unit start
|
||||
sudo service unit loadconfig /usr/share/doc/unit-php/examples/unit.config
|
||||
curl http://localhost:8300/
|
||||
|
||||
Online documentation is available at https://unit.nginx.org
|
||||
|
||||
----------------------------------------------------------------------
|
||||
BANNER
|
||||
endef
|
||||
export MODULE_POST_php
|
||||
Reference in New Issue
Block a user