]> git.pld-linux.org Git - packages/perl-Text-Haml.git/blob - perl-Text-Haml.spec
- fix build/install
[packages/perl-Text-Haml.git] / perl-Text-Haml.spec
1 #
2 # Conditional build:
3 %bcond_without  tests           # do not perform "make test"
4 #
5 %define         pdir    Text
6 %define         pnam    Haml
7 Summary:        Text::Haml - Haml Perl implementation
8 Summary(pl.UTF-8):      Text::Haml - implementacja Haml dla Perla
9 Name:           perl-Text-Haml
10 Version:        0.990118
11 Release:        1
12 License:        Artistic v2.0
13 Group:          Development/Languages/Perl
14 Source0:        http://www.cpan.org/modules/by-module/Text/Text-Haml-%{version}.tar.gz
15 # Source0-md5:  7f0b65b62e2515a46425ca35bf2b4808
16 URL:            http://search.cpan.org/dist/Text-Haml/
17 BuildRequires:  perl-Module-Build >= 0.38
18 BuildRequires:  perl-Module-Build-Tiny
19 BuildRequires:  perl-devel >= 1:5.8.1
20 BuildRequires:  rpm-perlprov >= 4.1-13
21 %if %{with tests}
22 BuildRequires:  perl-Data-Section-Simple
23 BuildRequires:  perl-URI
24 %endif
25 BuildArch:      noarch
26 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
27
28 %description
29 Text::Haml implements Haml specification:
30 <http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html>.
31
32 Text::Haml passes specification tests written by Norman Clarke
33 <http://github.com/norman/haml-spec> and supports only cross-language
34 Haml features. Do not expect Ruby specific things to work.
35
36 %description -l pl.UTF-8
37 Text::Haml implementuje specyfikację Haml:
38 <http://haml-lang.com/docs/yardoc/file.HAML_REFERENCE.html>.
39
40 Text::Haml przechodzi testy specifikacji napisane przez Normana
41 Clarke'a (<http://github.com/norman/haml-spec>) i obsługuje tylko
42 cechy Hamla wspólne dla wielu języków - nie należy się spodziewać, że
43 elementy specyficzne dla języka Ruby będą działać.
44
45 %prep
46 %setup -q -n %{pdir}-%{pnam}-%{version}
47
48 %build
49 %{__perl} Build.PL \
50         --destdir=$RPM_BUILD_ROOT \
51         --installdirs=vendor
52
53 ./Build
54
55 %{?with_tests:./Build test}
56
57 %install
58 rm -rf $RPM_BUILD_ROOT
59
60 ./Build install
61
62 %clean
63 rm -rf $RPM_BUILD_ROOT
64
65 %files
66 %defattr(644,root,root,755)
67 %doc Changes 
68 %{perl_vendorlib}/Text/Haml.pm
69 %{_mandir}/man3/Text::Haml.3pm*
This page took 0.053047 seconds and 4 git commands to generate.