use inc::Module::Install; name 'Vote'; all_from 'lib/Vote.pm'; requires 'Catalyst' => '5.7015'; requires 'Catalyst::Plugin::ConfigLoader'; requires 'Catalyst::Plugin::Static::Simple'; requires 'Catalyst::Action::RenderView'; requires 'YAML'; # This should reflect the config file format you've chosen # See Catalyst::Plugin::ConfigLoader for supported formats catalyst; install_script glob('script/*.pl'); auto_install; WriteAll; package MY; sub postamble { return " ChangeLog: \tsvn log > ChangeLog epoll.spec: epoll.spec.in \tsed -e 's/\@VERSION@/\$(VERSION)/' < \$< > \$@ rpm: \$(DISTVNAME).tar.gz epoll.spec \tmkdir ./noarch || : \trpmbuild -ba \\ \t --define \"_sourcedir `pwd`\" \\ \t --define \"_specdir `pwd`\" \\ \t --define \"_srcrpmdir `pwd`\" \\ \t --define \"_rpmdir `pwd`\" \\ \t epoll.spec " }