perl-inline.spec 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. ##
  2. ## perl-inline.spec -- OpenPKG RPM Specification
  3. ## Copyright (c) 2000-2004 The OpenPKG Project <http://www.openpkg.org/>
  4. ## Copyright (c) 2000-2004 Ralf S. Engelschall <rse@engelschall.com>
  5. ## Copyright (c) 2000-2004 Cable & Wireless <http://www.cw.com/>
  6. ##
  7. ## Permission to use, copy, modify, and distribute this software for
  8. ## any purpose with or without fee is hereby granted, provided that
  9. ## the above copyright notice and this permission notice appear in all
  10. ## copies.
  11. ##
  12. ## THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  13. ## WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  14. ## MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  15. ## IN NO EVENT SHALL THE AUTHORS AND COPYRIGHT HOLDERS AND THEIR
  16. ## CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  17. ## SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  18. ## LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  19. ## USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  20. ## ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  21. ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  22. ## OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  23. ## SUCH DAMAGE.
  24. ##
  25. # versions of individual parts
  26. %define V_perl 5.8.4
  27. %define V_inline 0.44
  28. %define V_inline_cpp 0.25
  29. %define V_inline_struct 0.06
  30. # package information
  31. Name: perl-inline
  32. Summary: Perl Modules for Inline Programming Language Embedding
  33. URL: http://www.cpan.org/
  34. Vendor: Perl Community
  35. Packager: The OpenPKG Project
  36. Distribution: OpenPKG
  37. Class: BASE
  38. Group: Language
  39. License: GPL/Artistic
  40. Version: %{V_perl}
  41. Release: 20040508
  42. # list of sources
  43. Source0: http://www.cpan.org/modules/by-module/Inline/Inline-%{V_inline}.tar.gz
  44. Source1: http://www.cpan.org/modules/by-module/Inline/Inline-CPP-%{V_inline_cpp}.tar.gz
  45. Source2: http://www.cpan.org/modules/by-module/Inline/Inline-Struct-%{V_inline_struct}.tar.gz
  46. # build information
  47. Prefix: %{l_prefix}
  48. BuildRoot: %{l_buildroot}
  49. BuildPreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}, perl-openpkg >= %{V_perl}-20040126
  50. PreReq: OpenPKG, openpkg >= 20040130, perl >= %{V_perl}
  51. BuildPreReq: perl-crypto, perl-parse
  52. PreReq: perl-crypto, perl-parse
  53. AutoReq: no
  54. AutoReqProv: no
  55. %description
  56. Perl modules for inline programing language embedding.
  57. - Inline (%{V_inline})
  58. - Inline::CPP (%{V_inline_cpp})
  59. - Inline::Struct (%{V_inline_struct})
  60. %track
  61. prog perl-inline:Inline = {
  62. version = %{V_inline}
  63. url = http://www.cpan.org/modules/by-module/Inline/
  64. regex = Inline-(__VER__)\.tar\.gz
  65. }
  66. prog perl-inline:Inline-CPP = {
  67. version = %{V_inline_cpp}
  68. url = http://www.cpan.org/modules/by-module/Inline/
  69. regex = Inline-CPP-(__VER__)\.tar\.gz
  70. }
  71. prog perl-inline:Inline-Struct = {
  72. version = %{V_inline_struct}
  73. url = http://www.cpan.org/modules/by-module/Inline/
  74. regex = Inline-Struct-(__VER__)\.tar\.gz
  75. }
  76. %prep
  77. %setup -q -c
  78. %setup -q -T -D -a 1
  79. %setup -q -T -D -a 2
  80. %build
  81. %install
  82. rm -rf $RPM_BUILD_ROOT
  83. %{l_prefix}/bin/perl-openpkg prepare
  84. # build and install Inline module
  85. %{l_shtool} subst \
  86. -e 's/my $default[^;]*;/my $default = "y";/' \
  87. Inline-%{V_inline}/C/Makefile.PL
  88. %{l_prefix}/bin/perl-openpkg -d Inline-%{V_inline} configure build install
  89. # build and install Inline::CPP module
  90. %{l_shtool} subst \
  91. -e 's:$cc_guess);:"%{l_prefix}/bin/g++");:' \
  92. -e 's:$libs_guess);:"-lstdc++");:' \
  93. Inline-CPP-%{V_inline_cpp}/Makefile.PL
  94. %{l_prefix}/bin/perl-openpkg -d Inline-CPP-%{V_inline_cpp} configure build install
  95. # build and install Inline::Struct module
  96. %{l_prefix}/bin/perl-openpkg -d Inline-Struct-%{V_inline_struct} configure build install
  97. %{l_prefix}/bin/perl-openpkg -F perl-openpkg-files fixate cleanup
  98. %{l_rpmtool} files -v -ofiles -r$RPM_BUILD_ROOT %{l_files_std} `cat perl-openpkg-files`
  99. %files -f files
  100. %clean
  101. rm -rf $RPM_BUILD_ROOT