forked from pool/perl-Encode-HanExtra
108 lines
3.2 KiB
RPMSpec
108 lines
3.2 KiB
RPMSpec
![]() |
#
|
||
|
# spec file for package perl-Encode-HanExtra (Version 0.10)
|
||
|
#
|
||
|
# Copyright (c) 2005 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||
|
# This file and all modifications and additions to the pristine
|
||
|
# package are under the same license as the package itself.
|
||
|
#
|
||
|
# Please submit bugfixes or comments via http://www.suse.de/feedback/
|
||
|
#
|
||
|
|
||
|
# norootforbuild
|
||
|
|
||
|
Name: perl-Encode-HanExtra
|
||
|
License: Artistic License
|
||
|
Group: Development/Libraries/Perl
|
||
|
Prereq: /usr/bin/enc2xs
|
||
|
Requires: perl = %{perl_version}
|
||
|
Autoreqprov: on
|
||
|
Version: 0.10
|
||
|
Release: 1
|
||
|
URL: http://search.cpan.org/~autrijus/Encode-HanExtra-0.10/
|
||
|
# Original Source is gzipped.
|
||
|
Source0: http://search.cpan.org/CPAN/authors/id/A/AU/AUTRIJUS/Encode-HanExtra-0.10.tar.bz2
|
||
|
Patch0: Encode-HanExtra.patch
|
||
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||
|
Summary: Extra sets of Chinese encodings
|
||
|
|
||
|
%description
|
||
|
Perl 5.7.3 and later ships with an adequate set of Chinese encodings,
|
||
|
including the most used CP950, CP936 (also known as GBK), Big5,
|
||
|
Big5-HKSCS, EUC-CN, HZ, and ISO-IR-165.
|
||
|
|
||
|
However, the numbers of Chinese encodings are staggering, and a
|
||
|
complete coverage will easily increase the size of perl distribution by
|
||
|
several megabytes; hence, this CPAN module tries to provide the rest of
|
||
|
them.
|
||
|
|
||
|
|
||
|
|
||
|
Authors:
|
||
|
--------
|
||
|
Autrijus Tang <autrijus@autrijus.org>
|
||
|
|
||
|
%define __find_provides /usr/lib/rpm/find-provides
|
||
|
%define __find_requires /usr/lib/rpm/find-requires
|
||
|
%prep
|
||
|
%setup -q -n Encode-HanExtra-%{version}
|
||
|
%patch0 -p1
|
||
|
|
||
|
%build
|
||
|
CFLAGS="$RPM_OPT_FLAGS" perl Makefile.PL
|
||
|
make
|
||
|
|
||
|
%install
|
||
|
[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
|
||
|
install -d $RPM_BUILD_ROOT/%{perl_archlib}
|
||
|
make DESTDIR=$RPM_BUILD_ROOT install_vendor
|
||
|
%perl_process_packlist
|
||
|
|
||
|
%post
|
||
|
enc2xs -C >/dev/null 2>&1
|
||
|
|
||
|
%postun
|
||
|
if [ $1 == 0 ] ; then
|
||
|
enc2xs -C >/dev/null 2>&1
|
||
|
fi
|
||
|
|
||
|
%clean
|
||
|
#[ "$RPM_BUILD_ROOT" != "/" ] && [ -d $RPM_BUILD_ROOT ] && rm -rf $RPM_BUILD_ROOT;
|
||
|
|
||
|
%files
|
||
|
%defattr(-,root,root)
|
||
|
%doc Changes MANIFEST README*
|
||
|
%{_mandir}/man3/*.3pm.gz
|
||
|
%{perl_vendorarch}/Encode/
|
||
|
%{perl_vendorarch}/auto/Encode/
|
||
|
/var/adm/perl-modules/perl-Encode-HanExtra
|
||
|
|
||
|
%changelog -n perl-Encode-HanExtra
|
||
|
* Wed Jan 25 2006 - mls@suse.de
|
||
|
- converted neededforbuild to BuildRequires
|
||
|
* Tue Aug 02 2005 - mfabian@suse.de
|
||
|
- update to 0.10.
|
||
|
* Sat Jan 10 2004 - adrian@suse.de
|
||
|
- build as user
|
||
|
* Sat Sep 13 2003 - mfabian@suse.de
|
||
|
- add "Prereq: /usr/bin/enc2xs", thanks to
|
||
|
Andreas Jaeger <aj@suse.de> for noticing the omission.
|
||
|
* Fri Aug 29 2003 - mfabian@suse.de
|
||
|
- redirect stdout and stderr of "enc2xs -C" to /dev/null.
|
||
|
* Fri Aug 22 2003 - mjancar@suse.cz
|
||
|
- require the perl version we build with
|
||
|
* Wed Jul 16 2003 - mfabian@suse.de
|
||
|
- use vendorarch instead of sitearch.
|
||
|
- simplify file list.
|
||
|
* Sun Jun 15 2003 - mfabian@suse.de
|
||
|
- fix "directory now owned by any package".
|
||
|
* Sun May 25 2003 - ro@suse.de
|
||
|
- remove unpackaged files from buildroot
|
||
|
* Fri May 16 2003 - mfabian@suse.de
|
||
|
- remove perllocal.pod from buildroot.
|
||
|
* Mon May 12 2003 - mfabian@suse.de
|
||
|
- use "enc2xs -C" in %%post and %%postun to register/unregister
|
||
|
the new encodings in the on demand-loading list.
|
||
|
* Fri May 09 2003 - mfabian@suse.de
|
||
|
- new package: perl-Encode-HanExtra-0.07
|
||
|
- fix installation of man-page
|