mirror of https://github.com/fspc/gbootroot.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.1 KiB
56 lines
1.1 KiB
# A SPEC to crreate a rpm package from IO-Stty-. This should work on all
|
|
# distributions using >= perl5.
|
|
|
|
# Update this according to version
|
|
%define version .02
|
|
%define release 1
|
|
|
|
|
|
Summary: Interface to secure pseudo ttys
|
|
Name: perl-IO-Stty
|
|
Version: %{version}
|
|
Release: %{release}
|
|
Copyright: GPL
|
|
Group: Development/Perl
|
|
Source: http://www.perl.com/CPAN/authors/id/A/AU/AUSCHUTZ/IO-Stty-%{version}.tar.gz
|
|
URL: http://gbootroot.sourceforge.net
|
|
Distribution: BootRoot
|
|
Vendor: Free Software
|
|
Packager: Jonathan Rosenbaum <freesource@users.sourceforge.net>
|
|
|
|
|
|
# Dependencies
|
|
PreReq: perl
|
|
AutoReqProv: no
|
|
|
|
|
|
%description
|
|
This is a generic interface to handle secure pseudo terminals by perl
|
|
scripts, such as the expect library.
|
|
|
|
|
|
|
|
%prep
|
|
%setup -n IO-Stty-%{version}
|
|
|
|
|
|
%build
|
|
perl Makefile.PL LIB=/usr/lib/perl5/site_perl
|
|
make
|
|
|
|
|
|
%install
|
|
make install
|
|
|
|
|
|
# nothing to clean
|
|
%clean
|
|
|
|
|
|
# will read this all from a files list %files -f filelist
|
|
%files
|
|
/usr/lib/perl5/site_perl/IO/Stty.pm
|
|
/usr/lib/perl5/site_perl/IO/stty.pl
|
|
|
|
|
|
%changelog
|