/
hubbitus
/
shell.scripts
Обзор
Документация
Войти
/
hubbitus
/
shell.scripts
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
SQL_diff/MySQL-Diff/MySQL-Diff-0.30/Makefile.PL
27 строк
625 B
Pavel Alexeev
Initial import all of my (Hubbitus) scripts
04 дек 2008, 11:35
04 дек 2008, 11:35
cb548b1
Код
Авторство
О чём код?
require 5.6.0; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( 'NAME' => 'MySQL::Diff', 'VERSION_FROM' => 'Diff.pm', # finds $VERSION 'PREREQ_PM' => { 'Class::MakeMethods::Template' => 0, }, ); sub MY::postamble { # Nasty hacks for getting the code to co-exist with guideguide CVS; # needn't concern anyone else. return '' unless -e '../mysqldiff'; <<'EOF'; mysqldiff.pl: ../mysqldiff ln -s $< $@ ChangeLog: $(TO_INST_PM) -rm -f $@ cd .. && rcs2log mysqldiff MySQL > MySQL/$@ EOF }