]> git.pld-linux.org Git - packages/cito.git/blame_incremental - cito.spec
- noarch (only bytecode packaged)
[packages/cito.git] / cito.spec
... / ...
CommitLineData
1Summary: Ci programming language
2Summary(en.UTF-8): Ć programming language
3Summary(pl.UTF-8): Język programowania Ć
4Name: cito
5Version: 0.4.0
6Release: 1
7License: GPL v3+
8Group: Development/Languages
9Source0: http://downloads.sourceforge.net/cito/%{name}-%{version}.tar.gz
10# Source0-md5: ce204e0e8595a326a6175113f271384c
11Patch0: %{name}-destdir.patch
12URL: https://github.com/pfusik/cito
13# .NET 3.5 - what is minimal mono version?
14BuildRequires: mono-csharp >= 3
15Requires: mono >= 3
16# only bytecode inside
17BuildArch: noarch
18BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
19
20%description
21Ci is a programming language which can be automatically translated to
22C, Java, C#, JavaScript, ActionScript and D. The translator is called
23`cito`.
24
25%description -l en.UTF-8
26Ć is a programming language which can be automatically translated to
27C, Java, C#, JavaScript, ActionScript and D. The translator is called
28`cito`.
29
30%description -l pl.UTF-8
31Ć to język programowania, który można automatycznie tłumaczyć do
32języków C, Java, C#, JavaScript, ActionScript i D. Translator nazywa
33się "cito".
34
35%prep
36%setup -q
37%patch0 -p1
38
39%build
40%{__make} \
41 CSC=mcs
42
43%install
44rm -rf $RPM_BUILD_ROOT
45
46%{__make} install \
47 DESTDIR=$RPM_BUILD_ROOT \
48 prefix=/usr
49
50%clean
51rm -rf $RPM_BUILD_ROOT
52
53%files
54%defattr(644,root,root,755)
55%doc README.html ci.html ci-logo.ico ci-logo.svg hello.ci
56%attr(755,root,root) %{_bindir}/cipad
57%attr(755,root,root) %{_bindir}/cito
58%dir %{_prefix}/lib/cito
59%{_prefix}/lib/cito/cipad.exe
60%{_prefix}/lib/cito/cito.exe
This page took 0.547802 seconds and 5 git commands to generate.