Initialize for linux-atm
This commit is contained in:
commit
c174e7cba4
9 changed files with 281 additions and 0 deletions
81
linux-atm.spec
Normal file
81
linux-atm.spec
Normal file
|
@ -0,0 +1,81 @@
|
|||
#
|
||||
# spec file for package linux-atm
|
||||
#
|
||||
# Copyright (c) 2022-2023 ZhuningOS
|
||||
#
|
||||
|
||||
|
||||
%global sover 1
|
||||
Name: linux-atm
|
||||
Version: 2.5.2
|
||||
Release: 150400.14.2.3
|
||||
Summary: Tools for ATM
|
||||
License: BSD-3-Clause AND GPL-2.0-or-later AND LGPL-2.1-or-later
|
||||
Group: Productivity/Networking/Other
|
||||
URL: http://linux-atm.sourceforge.net/
|
||||
Source0: http://downloads.sourceforge.net/project/%{name}/%{name}/%{version}/%{name}-%{version}.tar.gz
|
||||
# PATCH-FIX-UPSTREAM linux-atm-2.5.2_fdleak.patch
|
||||
Patch0: linux-atm-2.5.2_fdleak.patch
|
||||
# PATCH-FIX-UPSTREAM linux-atm-2.5.2_implicit-fortify-decl.patch -- fix implicit declarations
|
||||
Patch1: linux-atm-2.5.2_implicit-fortify-decl.patch
|
||||
# PATCH-FIX-UPSTREAM linux-atm-2.5.2-fix-header-conflict.patch -- avoid conflict with kernel headers
|
||||
Patch2: linux-atm-2.5.2-fix-header-conflict.patch
|
||||
# PATCH-FIX-UPSTREAM linux-atm-2.5.2-remove-headers-crude-hack.patch -- Remove headers crude hack
|
||||
Patch3: linux-atm-2.5.2-remove-headers-crude-hack.patch
|
||||
# PATCH-FIX-UPSTREAM fix-build-after-y2038-changes-in-glibc.patch -- fix build after y2038 changes in glibc
|
||||
Patch4: fix-build-after-y2038-changes-in-glibc.patch
|
||||
BuildRequires: bison
|
||||
BuildRequires: flex
|
||||
BuildRequires: glibc-devel
|
||||
|
||||
%description
|
||||
Tools to support ATM (Asynchronous Transfer Mode) networking.
|
||||
|
||||
%package -n libatm%{sover}
|
||||
Summary: Libraries for ATM
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n libatm%{sover}
|
||||
Libraries for ATM (Asynchronous Transfer Mode) networking.
|
||||
|
||||
%package devel
|
||||
Summary: Development for ATM
|
||||
Group: Development/Libraries/C and C++
|
||||
Requires: libatm%{sover} = %{version}
|
||||
|
||||
%description devel
|
||||
Libraries and header files for ATM (Asynchronous Transfer Mode)
|
||||
networking.
|
||||
|
||||
%prep
|
||||
%autosetup -p1
|
||||
|
||||
%build
|
||||
%configure --disable-static
|
||||
%make_build
|
||||
|
||||
%install
|
||||
%make_install
|
||||
find %{buildroot} -type f -name "*.la" -delete -print
|
||||
|
||||
%post -n libatm%{sover} -p /sbin/ldconfig
|
||||
%postun -n libatm%{sover} -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%doc README AUTHORS ChangeLog NEWS THANKS BUGS
|
||||
%config(noreplace) %{_sysconfdir}/atmsigd.conf
|
||||
%config(noreplace) %{_sysconfdir}/hosts.atm
|
||||
%{_bindir}/*
|
||||
%{_sbindir}/*
|
||||
/lib/firmware/*
|
||||
%{_mandir}/man*/*.gz
|
||||
|
||||
%files -n libatm%{sover}
|
||||
%license COPYING COPYING.GPL COPYING.LGPL
|
||||
%{_libdir}/libatm.so.%{sover}*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/atm*.h
|
||||
%{_libdir}/libatm.so
|
||||
|
||||
%changelog
|
Loading…
Add table
Add a link
Reference in a new issue