ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
128 lines
3.4 KiB
RPMSpec
128 lines
3.4 KiB
RPMSpec
Summary: ncurses-examples - example/test programs from ncurses
|
|
%?mingw_package_header
|
|
|
|
%global AppProgram ncurses-examples
|
|
%global AppVersion MAJOR.MINOR
|
|
%global AppRelease YYYYMMDD
|
|
# $Id: mingw-ncurses-examples.spec,v 1.13 2025/06/21 18:35:49 tom Exp $
|
|
Name: mingw32-ncurses6-examples
|
|
Version: %{AppVersion}
|
|
Release: %{AppRelease}
|
|
License: X11 License Distribution Modification Variant
|
|
Group: Development/Libraries
|
|
URL: https://invisible-island.net/ncurses/%{AppProgram}.html
|
|
Source: https://invisible-island.net/archives/%{AppProgram}/%{AppProgram}-%{release}.tgz
|
|
|
|
BuildRequires: mingw32-ncurses6
|
|
|
|
BuildRequires: mingw32-filesystem >= 95
|
|
BuildRequires: mingw32-gcc
|
|
BuildRequires: mingw32-binutils
|
|
|
|
BuildRequires: mingw64-ncurses6
|
|
|
|
BuildRequires: mingw64-filesystem >= 95
|
|
BuildRequires: mingw64-gcc
|
|
BuildRequires: mingw64-binutils
|
|
|
|
%define CC_NORMAL -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow -Wconversion
|
|
%define CC_STRICT %{CC_NORMAL} -W -Wbad-function-cast -Wcast-align -Wcast-qual -Wmissing-declarations -Wnested-externs -Wpointer-arith -Wwrite-strings -ansi -pedantic
|
|
|
|
%description -n mingw32-ncurses6-examples
|
|
Cross-compiling support for ncurses to mingw32.
|
|
|
|
The ncurses library routines are a terminal-independent method of
|
|
updating character screens with reasonable optimization.
|
|
|
|
This package is used for testing ABI 6 with cross-compiles to MinGW.
|
|
|
|
%package -n mingw64-ncurses6-examples
|
|
Summary: Curses library for MinGW64
|
|
|
|
%description -n mingw64-ncurses6-examples
|
|
Cross-compiling support for ncurses to mingw64.
|
|
|
|
The ncurses library routines are a terminal-independent method of
|
|
updating character screens with reasonable optimization.
|
|
|
|
This package is used for testing ABI 6 with cross-compiles to MinGW.
|
|
|
|
%prep
|
|
|
|
# override location of bindir, e.g., to avoid conflict with pdcurses
|
|
%global mingw32_bindir %{mingw32_exec_prefix}/bin/%{AppProgram}
|
|
%global mingw64_bindir %{mingw64_exec_prefix}/bin/%{AppProgram}
|
|
|
|
%global mingw32_datadir %{mingw32_datadir}/%{AppProgram}
|
|
%global mingw64_datadir %{mingw64_datadir}/%{AppProgram}
|
|
|
|
%global mingw32_libexec %{mingw32_libexecdir}/%{AppProgram}
|
|
%global mingw64_libexec %{mingw64_libexecdir}/%{AppProgram}
|
|
|
|
%define CFG_OPTS \\\
|
|
--enable-echo \\\
|
|
--enable-warnings \\\
|
|
--verbose \\\
|
|
--with-screen=ncursesw6
|
|
|
|
%define debug_package %{nil}
|
|
%setup -q -n ncurses-examples-%{release}
|
|
|
|
%build
|
|
mkdir BUILD-W32
|
|
pushd BUILD-W32
|
|
CFLAGS="%{CC_NORMAL}" \
|
|
CC=%{mingw32_cc} \
|
|
NCURSES_CONFIG_SUFFIX=dev \
|
|
%mingw32_configure %{CFG_OPTS} \
|
|
--datadir=%{mingw32_datadir}
|
|
make
|
|
popd
|
|
|
|
mkdir BUILD-W64
|
|
pushd BUILD-W64
|
|
CFLAGS="%{CC_NORMAL}" \
|
|
CC=%{mingw64_cc} \
|
|
%mingw64_configure %{CFG_OPTS} \
|
|
--datadir=%{mingw32_datadir}
|
|
make
|
|
popd
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
pushd BUILD-W32
|
|
%{mingw32_make} install DESTDIR=$RPM_BUILD_ROOT
|
|
popd
|
|
|
|
pushd BUILD-W64
|
|
%{mingw64_make} install DESTDIR=$RPM_BUILD_ROOT
|
|
popd
|
|
|
|
%files -n mingw32-ncurses6-examples
|
|
%defattr(-,root,root,-)
|
|
%{mingw32_bindir}/*
|
|
%{mingw32_datadir}/*
|
|
%{mingw32_libexec}/*
|
|
|
|
%files -n mingw64-ncurses6-examples
|
|
%defattr(-,root,root,-)
|
|
%{mingw64_bindir}/*
|
|
%{mingw64_datadir}/*
|
|
%{mingw64_libexec}/*
|
|
|
|
%changelog
|
|
|
|
* RPM_DATE Thomas Dickey
|
|
- testing ncurses MAJOR.MINOR.YYYYMMDD
|
|
|
|
* Sat Feb 25 2023 Thomas Dickey
|
|
- use libexecdir for programs rather than subdir of bindir
|
|
- amend URLs per rpmlint
|
|
|
|
* Sat Nov 16 2019 Thomas Dickey
|
|
- modify clean-rule to work around Fedora NFS bugs.
|
|
|
|
* Sat Oct 19 2013 Thomas E. Dickey
|
|
- initial version
|