83 lines
2.9 KiB
RPMSpec
83 lines
2.9 KiB
RPMSpec
#
|
|
# spec file for package perl-Getopt-GUI-Long
|
|
#
|
|
# Copyright (c) 2025 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/
|
|
#
|
|
|
|
|
|
%define cpan_name Getopt-GUI-Long
|
|
Name: perl-Getopt-GUI-Long
|
|
Version: 0.930.0
|
|
Release: 0
|
|
# 0.93 -> normalize -> 0.930.0
|
|
%define cpan_version 0.93
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Getopt::GUI::Long Perl module
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/H/HA/HARDAKER/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module is a wrapper around Getopt::Long that extends the value of
|
|
the original Getopt::Long module to:
|
|
|
|
1) add a simple graphical user interface option screen if no
|
|
arguments are passed to the program. Thus, the arguments to
|
|
actually use are built based on the results of the user
|
|
interface. If arguments were passed to the program, the user
|
|
interface is not shown and the program executes as it normally
|
|
would and acts just as if Getopt::Long::GetOptions had been
|
|
called instead.
|
|
|
|
2) provide an auto-help mechanism such that -h and --help are
|
|
handled automatically. In fact, calling your program with -h
|
|
will default to showing the user a list of short-style arguments
|
|
when one exists for the option. Similarly --help will show the
|
|
user a list of long-style when possible. --help-full will list
|
|
all potential arguments for an option (short and long both).
|
|
|
|
It's designed to make the creation of graphical shells trivial
|
|
without the programmer having to think about it much as well as
|
|
providing automatic good-looking usage output without the
|
|
programmer needing to write usage() functions.
|
|
|
|
This also can turn normal command line programs into web CGI scripts
|
|
as well (automatically). If the Getopt::GUI::Long program is
|
|
installed as a CGI script then it will automatically prompt the user
|
|
for the same variables.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor
|
|
%make_build
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%doc examples README
|
|
|
|
%changelog
|