source: projects/specs/trunk/a/alien/alien-vl.spec @ 9340

Revision 9340, 2.0 KB checked in by Takemikaduchi, 9 years ago (diff)

atkmm,pangomm,automake112: rebuild
others: new upstream release

Line 
1Summary: Install Debian, Slackware, and Stampede packages with rpm.
2Summary(ja): Debian, Slackware, Stampede パッケージ等を rpm でインストールするためのツール
3Name: alien
4Version: 8.93
5Release: 1%{?_dist_release}
6Source: http://ftp.de.debian.org/debian/pool/main/a/alien/%{name}_%{version}.tar.gz
7URL: http://kitenet.net/~joey/code/alien/
8License: GPLv2
9Group: Applications/Other
10
11BuildRoot: %{_tmppath}/%{name}-%{version}-root
12BuildArch: noarch
13BuildRequires: perl
14Requires: perl
15
16%description
17Alien allows you to convert Debian, Slackware, and Stampede Packages into Red
18Hat packages, which can be installed with rpm.
19
20It can also convert into Slackware, Debian and Stampede packages.
21
22This is a tool only suitable for binary packages.
23
24%prep
25%setup -q -n alien
26
27%build
28perl Makefile.PL INSTALLDIRS="vendor"
29make
30
31%install
32rm -rf $RPM_BUILD_ROOT
33make pure_install DESTDIR=$RPM_BUILD_ROOT \
34        PREFIX=$RPM_BUILD_ROOT%{_prefix} \
35        VARPREFIX=$RPM_BUILD_ROOT
36
37find $RPM_BUILD_ROOT -name '*.packlist' -exec rm -f {} \;
38
39find $RPM_BUILD_ROOT%{_prefix}/lib -type f -print |
40                sed "s@^$RPM_BUILD_ROOT@@g" > perl-Alien
41
42%clean
43rm -rf ${RPM_BUILD_ROOT}
44
45%files -f perl-Alien
46%defattr(-,root,root)
47%doc debian/changelog GPL README alien.lsm
48%dir %{perl_vendorlib}/Alien
49%dir %{_localstatedir}/lib/alien
50%{_bindir}/alien
51%{_datadir}/alien
52%{_mandir}/man*/*
53
54%changelog
55* Sun Feb 08 2015 Yoji TOYODA <bsyamato@sea.plala.or.jp> 8.93-1
56- new upstream release
57
58* Tue Jul 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 8.87-1
59- new upstream release
60
61* Mon May 24 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.81-1
62- updated to 8.81
63
64* Sat Apr 25 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 8.74-1
65- applied new versioning policy, spec in UTF-8
66- updated to 8.74
67- changed Group to Applications/Other
68
69* Wed Jul 30 2003 KOBAYASHI R. Taizo <tkoba@vinelinux.org>
70- source update
71
72* Tue Jul 10 2001 Trond Eivind Glomsrød <teg@redhat.com>
73- Remove "Packager" field
74- Add perl as an build requirement
75
76* Fri Jun 22 2001 Jeff Johnson <jbj@redhat.com>
77- Package for Red Hat 7.x.
Note: See TracBrowser for help on using the repository browser.