74 lines
2.3 KiB
RPMSpec
74 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package nml
|
|
#
|
|
# 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/
|
|
#
|
|
|
|
|
|
Name: nml
|
|
Version: 0.7.6
|
|
Release: 0
|
|
Summary: NewGRF Meta Language
|
|
License: GPL-2.0-or-later
|
|
Group: Development/Tools/Building
|
|
URL: http://dev.openttdcoop.org/projects/nml
|
|
Source: https://github.com/OpenTTD/%{name}/releases/download/%{version}/%{name}-%{version}.tar.gz
|
|
BuildRequires: gcc
|
|
BuildRequires: python3-devel
|
|
BuildRequires: python3-setuptools
|
|
# We need the required packages also on building for regression tests:
|
|
BuildRequires: python3-Pillow >= 3.4
|
|
BuildRequires: python3-ply
|
|
Requires: python3-Pillow >= 3.4
|
|
Requires: python3-ply
|
|
Provides: nmlc = %{version}
|
|
|
|
%description
|
|
A tool to compile nml files to grf or nfo files, making newgrf coding easier.
|
|
|
|
%prep
|
|
%autosetup -p1 -n %{name}-%{version}
|
|
|
|
%build
|
|
make extensions
|
|
|
|
%check
|
|
PYTHONDONTWRITEBYTECODE=1 make -C regression
|
|
|
|
%install
|
|
python3 setup.py install --skip-build --root=%{buildroot} --prefix=%{_prefix}
|
|
|
|
install -D -m0644 docs/nmlc.1 %{buildroot}%{_mandir}/man1/nmlc.1
|
|
|
|
#setuptools should not be a requirement on running, so we install the nmlc wrapper from source
|
|
install -m0755 nmlc %{buildroot}%{_bindir}/nmlc
|
|
# Fix script interpreter
|
|
sed -i 's@^#!\s*/usr/bin/env python3@#!/usr/bin/python3@' %{buildroot}%{_bindir}/nmlc
|
|
|
|
# The actual python code is not being installed?!?
|
|
mkdir -p %{buildroot}%{python3_sitelib}/nml
|
|
cp -rp nml/* %{buildroot}%{python3_sitelib}/nml/
|
|
# Remove devel file
|
|
rm %{buildroot}%{python3_sitelib}/nml/_lz77.c
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc docs/*.txt
|
|
%{_bindir}/nmlc
|
|
%{_mandir}/man1/nmlc.1*
|
|
%{python3_sitearch}/*
|
|
%{python3_sitelib}/%{name}/
|
|
|
|
%changelog
|