65 lines
1.8 KiB
RPMSpec
65 lines
1.8 KiB
RPMSpec
#
|
|
# spec file for package tclx
|
|
#
|
|
# Copyright (c) 2023 SUSE LLC
|
|
#
|
|
# 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 https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: tclx
|
|
Version: 8.6.2
|
|
Release: 0
|
|
Summary: TclX - Extended Tcl
|
|
License: BSD-3-Clause AND SUSE-Permissive
|
|
URL: http://tclx.sourceforge.net/
|
|
Group: Development/Languages/Tcl
|
|
Source0: https://github.com/flightaware/tclx/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
BuildRequires: autoconf
|
|
BuildRequires: tcl-devel
|
|
|
|
%description
|
|
Extended Tcl is a superset of standard Tcl. Extended Tcl has three
|
|
basic functional areas: A set of new commands, a Tcl shell (a Unix
|
|
shell-style command line and interactive environment), and a
|
|
user-extensible library of useful Tcl procedures, any of which can be
|
|
automatically loaded on the first attempt to execute it.
|
|
|
|
In addition, a detailed help system is available for Tcl/Tk: tclhelp.
|
|
|
|
%prep
|
|
%autosetup
|
|
|
|
%build
|
|
autoreconf -fi
|
|
export CFLAGS="%optflags -fno-strict-aliasing"
|
|
%configure \
|
|
--with-tcl=%_libdir \
|
|
--libdir=%tcl_archdir \
|
|
--with-help \
|
|
--enable-threads
|
|
%make_build
|
|
|
|
%install
|
|
%make_install
|
|
|
|
%post -p /sbin/ldconfig
|
|
%postun -p /sbin/ldconfig
|
|
|
|
%files
|
|
%doc README.md
|
|
%tcl_archdir/%{name}8.6
|
|
%_mandir/mann/*
|
|
%_includedir/*
|
|
|
|
%changelog
|