Server IP : 104.21.38.3 / Your IP : 162.158.189.149 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/packaging/deb-in/ |
Upload File : |
#!/usr/bin/make -f # Copyright (c) 2015, 2023, Oracle and/or its affiliates. # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2.0, # as published by the Free Software Foundation. # # This program is also distributed with certain software (including # but not limited to OpenSSL) that is licensed under separate terms, # as designated in a particular file or component or in included license # documentation. The authors of MySQL hereby grant you an additional # permission to link the program and your derivative works with the # separately licensed software that they have included with MySQL. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License, version 2.0, for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA %: dh $@ export DH_VERBOSE=1 export CFLAGS= export CXXFLAGS= override_dh_auto_configure: @echo "RULES.$@" @DEB_RULES_DEBUG_CMAKE@ mkdir release && cd release && \ cmake .. \ -DBUILD_CONFIG=mysql_release \ -DCMAKE_INSTALL_PREFIX=/usr \ -DINSTALL_DOCDIR=share/mysql/docs \ -DINSTALL_DOCREADMEDIR=share/mysql \ -DINSTALL_INCLUDEDIR=include/mysql \ -DINSTALL_INFODIR=share/mysql/docs \ -DINSTALL_LIBDIR=lib/$(DEB_HOST_MULTIARCH) \ -DINSTALL_MANDIR=share/man \ -DINSTALL_MYSQLSHAREDIR=share/mysql \ -DINSTALL_MYSQLTESTDIR=lib/mysql-test \ -DINSTALL_PLUGINDIR=lib/mysql/plugin \ -DINSTALL_SBINDIR=sbin \ -DINSTALL_SUPPORTFILESDIR=share/mysql \ -DSYSCONFDIR=/etc/mysql \ -DMYSQL_UNIX_ADDR=/var/run/mysqld/mysqld.sock \ -DWITH_SSL=system \ -DWITH_INNODB_MEMCACHED=1 \ -DWITH_MECAB=system \ -DWITH_NUMA=ON \ -DCOMPILATION_COMMENT="MySQL @DEB_PRODUCTNAMEC@ Server (@DEB_LICENSENAME@)" \ -DINSTALL_LAYOUT=DEB \ -DDEB_PRODUCT=@DEB_PRODUCT@ \ @DEB_CMAKE_EXTRAS@ touch $@ override_dh_auto_build: @echo "RULES.$@" @DEB_RULES_DEBUG_MAKE@ cd release && \ $(MAKE) -j8 VERBOSE=1 touch $@ override_dh_auto_test: @echo "RULES.$@" export CTEST_OUTPUT_ON_FAILURE=1 cd release && \ make test || true touch $@ @DEB_RULES_STRIP@ override_dh_auto_install: @echo "RULES.$@" # complete install first cd release && \ $(MAKE) install DESTDIR=../debian/tmp @DEB_RULES_DEBUG_EXTRA@ # add missing man pages install -g root -o root -m 0644 debian/extra/mysql_embedded.1 debian/tmp/usr/share/man/man1 # Add helper functions for maintainer scripts install -m 0644 debian/extra/mysql-helpers debian/tmp/usr/share/mysql/ # add apparmor profile @DEB_RULES_INSTALL_APPARMOR@ # add systemd script @DEB_RULES_INSTALL_SYSTEMD@ touch $@ override_dh_installinit: @echo "RULES.$@" @DEB_RULES_APPARMOR_LOAD@ @DEB_RULES_SYSTEMD_ENABLE@ dh_installinit --name=mysql -- defaults 19 21 dh_installinit --name=mysql@ -- disable @DEB_RULES_SYSTEMD_START@ touch $@ override_dh_install: dh_install --fail-missing \ -Xusr/bin/i_mysql_client_test \ -Xusr/share/mysql/mysql.server \ -Xusr/share/man/man1/mysql.server.1 \ -Xusr/share/mysql/binary-configure \ -Xusr/share/mysql/@DEB_INSTALL_LICENSEFILE@-test \ -Xusr/share/mysql/README-test \ -Xusr/share/mysql/docs/mysql.info \ -Xusr/share/man/man1/mysqlman.1 \ -X.h.pp