rebuilt with debug package, build requirements and other fixes [release 0.7.5-4mamba;Tue Jan 04 2022]

This commit is contained in:
Silvan Calarco 2024-01-05 20:43:28 +01:00
parent e8cfa7d7ea
commit 0769168653
2 changed files with 19 additions and 13 deletions

View File

@ -1,9 +1,7 @@
# awka # awka
Awka is an open-source implementation of the AWK programming language and is actually two products: Awka is an open-source implementation of the AWK programming language and is actually two products:
- the AWK to C translator - the AWK to C translator
- a library against which the C code is linked - a library against which the C code is linked
Awka is not an interpreter like Gawk, Mawk or Nawk, but instead it converts the program to ANSI-C, then compiles this using gcc or a native C compiler to create a binary executable. This means you must have an ANSI C compiler present on your system for Awka to work. Awka is not an interpreter like Gawk, Mawk or Nawk, but instead it converts the program to ANSI-C, then compiles this using gcc or a native C compiler to create a binary executable. This means you must have an ANSI C compiler present on your system for Awka to work.

View File

@ -1,32 +1,34 @@
Name: awka Name: awka
Version: 0.7.5 Version: 0.7.5
Release: 3mamba Release: 4mamba
Summary: Translator of the AWK programming language to ANSI-C Summary: Translator of the AWK programming language to ANSI-C
Group: Applications/Text Group: Applications/Text
Vendor: openmamba Vendor: openmamba
Distribution: openmamba Distribution: openmamba
Packager: Stefano Cotta Ramusino <stefano.cotta@qilinux.it> Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://awka.sourceforge.net/ URL: http://awka.sourceforge.net/
Source: http://awka.sourceforge.net/%{name}-%{version}.tar.gz Source: http://awka.sourceforge.net/%{name}-%{version}.tar.gz
Patch: awka-%{version}-DESTDIR.patch Patch: awka-%{version}-DESTDIR.patch
License: GPL License: GPL
BuildRoot: %{_tmppath}/%{name}-%{version}-root ## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
## AUTOBUILDREQ-END
%description %description
Awka is an open-source implementation of the AWK programming language and is actually two products: Awka is an open-source implementation of the AWK programming language and is actually two products:
- the AWK to C translator - the AWK to C translator
- a library against which the C code is linked - a library against which the C code is linked
Awka is not an interpreter like Gawk, Mawk or Nawk, but instead it converts the program to ANSI-C, then compiles this using gcc or a native C compiler to create a binary executable. This means you must have an ANSI C compiler present on your system for Awka to work. Awka is not an interpreter like Gawk, Mawk or Nawk, but instead it converts the program to ANSI-C, then compiles this using gcc or a native C compiler to create a binary executable. This means you must have an ANSI C compiler present on your system for Awka to work.
%package devel %package devel
Summary: Devel package for %{name} Summary: Devel package for %{name}
Group: Development/Libraries Group: Development/Libraries
Requires: %{name} = %{version} Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel %description devel
This package contains static libraries need for development. This package contains static libraries needed for development.
%debug_package
%prep %prep
%setup -q %setup -q
@ -49,16 +51,22 @@ This package contains static libraries need for development.
%files %files
%defattr(-,root,root) %defattr(-,root,root)
%{_bindir}/awka %{_bindir}/awka
%{_libdir}/libawka.so* %{_libdir}/libawka.so
%{_includedir}/libawka.h %{_mandir}/man1/awka.1*
%{_mandir}/man[15]/* %{_mandir}/man5/awka-elm.5*
%doc ACKNOWLEDGEMENTS CHANGELOG.txt PROBLEMS.txt README.txt TODO.txt %{_mandir}/man5/awka-elmref.5*
%doc GPL.txt
%files devel %files devel
%defattr(-,root,root) %defattr(-,root,root)
%{_includedir}/libawka.h
%{_libdir}/libawka.a %{_libdir}/libawka.a
%doc ACKNOWLEDGEMENTS CHANGELOG.txt PROBLEMS.txt README.txt TODO.txt
%changelog %changelog
* Tue Jan 04 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 0.7.5-4mamba
- rebuilt with debug package, build requirements and other fixes
* Wed Aug 28 2013 Automatic Build System <autodist@mambasoft.it> 0.7.5-3mamba * Wed Aug 28 2013 Automatic Build System <autodist@mambasoft.it> 0.7.5-3mamba
- automatic rebuild by autodist - automatic rebuild by autodist