forked from pool/expect
ef966f9a9e
add autoconf to buildrequires OBS-URL: https://build.opensuse.org/request/show/97331 OBS-URL: https://build.opensuse.org/package/show/devel:languages:tcl/expect?expand=0&rev=9
96 lines
2.8 KiB
RPMSpec
96 lines
2.8 KiB
RPMSpec
#
|
|
# spec file for package expect
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Url: http://expect.nist.gov
|
|
|
|
Name: expect
|
|
BuildRequires: autoconf
|
|
BuildRequires: tcl-devel
|
|
Version: 5.45
|
|
Release: 0
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
Summary: A Tool for Automating Interactive Programs
|
|
License: SUSE-Public-Domain
|
|
Group: Development/Languages/Tcl
|
|
Source: %{name}%{version}.tar.gz
|
|
Source1: expect-rpmlintrc
|
|
Patch1: expect.patch
|
|
Patch2: expect-fixes.patch
|
|
|
|
%description
|
|
Expect is a tool primarily for automating interactive applications,
|
|
such as telnet, ftp, passwd, fsck, rlogin, tip, and more. Expect
|
|
really makes this stuff trivial. Expect is also useful for testing
|
|
these applications. It is described in many books, articles, papers,
|
|
and FAQs. There is an entire book on it available from O'Reilly.
|
|
|
|
%package devel
|
|
Summary: Header Files and C API Documentation for expect
|
|
Group: Development/Libraries/Tcl
|
|
|
|
%description devel
|
|
This package contains header files and documentation needed for linking
|
|
to expect from programs written in compiled languages like C, C++, etc.
|
|
|
|
This package is not needed for developing scripts that run under the
|
|
/usr/bin/expect interpreter, or any other Tcl interpreter with the
|
|
expect package loaded.
|
|
|
|
%prep
|
|
%setup -q -n %name%version
|
|
%patch1
|
|
%patch2
|
|
|
|
%build
|
|
autoreconf
|
|
%configure \
|
|
--with-tcl=%_libdir \
|
|
--with-tk=no_tk \
|
|
--with-tclinclude=%_includedir \
|
|
--enable-shared
|
|
make %{?_smp_mflags} all pkglibdir=%_libdir/tcl/%name%version
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
# set the right path to the expect binary...
|
|
sed -i \
|
|
-e '1s,^#![^ ]*expectk,#!/usr/bin/wish\npackage require Expect,' \
|
|
-e '1s,^#![^ ]*expect,#!/usr/bin/expect,' \
|
|
example/*
|
|
make install DESTDIR=$RPM_BUILD_ROOT pkglibdir=%_libdir/tcl/%name%version
|
|
# Remove some executables and manpages we don't want to ship
|
|
rm $RPM_BUILD_ROOT%_prefix/bin/*passwd
|
|
rm $RPM_BUILD_ROOT%_mandir/*/*passwd*
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%_prefix/bin/*
|
|
%_libdir/tcl/*
|
|
%_libdir/lib*.so
|
|
%doc %_mandir/man1/*
|
|
%doc ChangeLog HISTORY INSTALL FAQ NEWS README
|
|
|
|
%files devel
|
|
%defattr(-,root,root)
|
|
%_includedir/*
|
|
%doc %_mandir/man3/*
|
|
|
|
%changelog
|