Initial SETUP.
This commit is contained in:
parent
80a29c6fc1
commit
1bb9c03755
3 changed files with 63 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/aime-6.20130713.tar.gz
|
||||
61
aime.spec
Normal file
61
aime.spec
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
%global libname libaime
|
||||
|
||||
Name: aime
|
||||
Version: 6.20130713
|
||||
Release: 1%{?dist}
|
||||
Summary: An application embeddable programming language interpreter
|
||||
License: GPLv3+
|
||||
URL: http://aime-embedded.sourceforge.net/
|
||||
Source0: http://downloads.sourceforge.net/project/aime-embedded/%{name}/%{name}-%{version}/%{name}-%{version}.tar.gz
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
|
||||
%description
|
||||
aime is a programming language, with a C like syntax, intended for application
|
||||
extending purposes. The aime collection comprises the language description, an
|
||||
application embeddable interpreter (libaime), the interpreter C interface
|
||||
description and a standalone interpreter. Many examples on how the interpreter
|
||||
can be used (embedded in an application) are also available, together with
|
||||
some hopefully useful applications, such as expression evaluators.
|
||||
|
||||
%package devel
|
||||
Summary: Development files for %{name}
|
||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||
|
||||
%description devel
|
||||
The %{name}-devel package contains header files for
|
||||
developing applications that use %{name}.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -name '*.a' -exec rm -f {} ';'
|
||||
rm -f %{buildroot}%{_infodir}/dir
|
||||
|
||||
%post
|
||||
/sbin/install-info %{_infodir}/%{libname}.info %{_infodir}/dir || :
|
||||
|
||||
%preun
|
||||
/sbin/install-info --delete %{_infodir}/%{libname}.info %{_infodir}/dir || :
|
||||
|
||||
%files
|
||||
%doc COPYING README TODO
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man1/*.1*
|
||||
%{_infodir}/%{libname}.info*
|
||||
|
||||
%files devel
|
||||
%{_includedir}/%{name}.h
|
||||
|
||||
%changelog
|
||||
* Mon Jul 29 2013 Christopher Meng <rpm@cicku.me> - 6.20130713-1
|
||||
- Update to new version.
|
||||
|
||||
* Fri May 31 2013 Christopher Meng <rpm@cicku.me> - 5.20130520-1
|
||||
- Initial Package.
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
90bf26ceb25f1dbaf3bc581ed8e9e9d7 aime-6.20130713.tar.gz
|
||||
Loading…
Add table
Add a link
Reference in a new issue