summaryrefslogtreecommitdiffhomepage
path: root/pkg/rpm/Makefile.php
diff options
context:
space:
mode:
authorAndrei Belov <defan@nginx.com>2017-10-19 18:23:31 +0300
committerAndrei Belov <defan@nginx.com>2017-10-19 18:23:31 +0300
commiteabe25d98e6805221025daf7bc60d881af1af6b1 (patch)
tree23a72fc526122de22909c62bb06af95d7c5572da /pkg/rpm/Makefile.php
parentc8a8a7c2120e276777f97dcee6d489788417792a (diff)
downloadunit-eabe25d98e6805221025daf7bc60d881af1af6b1.tar.gz
unit-eabe25d98e6805221025daf7bc60d881af1af6b1.tar.bz2
Introduced rpm packages building tools.
Diffstat (limited to 'pkg/rpm/Makefile.php')
-rw-r--r--pkg/rpm/Makefile.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkg/rpm/Makefile.php b/pkg/rpm/Makefile.php
new file mode 100644
index 00000000..dcaee2a8
--- /dev/null
+++ b/pkg/rpm/Makefile.php
@@ -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