blob: bc99c56e0bbad97f61bb6e19a2855f8669f8e542 (
plain)
1
2
3
4
5
6
7
8
9
|
pkg:setup
ENV.prepend_create_path "PERL5LIB", libexec/"lib/perl5"
resources.each do |r|
r.stage do
next if r.name == "thrust"
perl_flags = "TT_ACCEPT=y" if r.name == "Template"
perl Makefile.PL INSTALL_BASE=#{libexec} perl_flags
make
make DESTDIR=${PKG_DEST} install
|