]> git.pld-linux.org Git - packages/nsgenbind.git/blame - nsgenbind.spec
- obsoleted
[packages/nsgenbind.git] / nsgenbind.spec
CommitLineData
b93dde23 1#
2Summary: Tool to generate dom bindings
3Name: nsgenbind
54733b94 4Version: 0.1.0
b93dde23 5Release: 1
6License: MIT
7Group: Development/Tools
8Source0: http://download.netsurf-browser.org/libs/releases/%{name}-%{version}-src.tar.gz
54733b94 9# Source0-md5: 23ebe622872b4a587f86c5885146d81e
b93dde23 10URL: http://www.netsurf-browser.org/
11BuildRequires: bison
12BuildRequires: flex
13BuildRequires: netsurf-buildsystem
14BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
15
16%description
17This is a tool to generate javascript to dom bindings from w3c webidl
18files and a binding configuration file.
19
20%prep
21%setup -q
b93dde23 22
23%build
24CFLAGS="%{rpmcflags}"
25LDFLAGS="%{rpmldflags}"
26export CFLAGS
27export LDFLAGS
28
29%{__make} PREFIX=%{_prefix} Q=''
30
31%install
32rm -rf $RPM_BUILD_ROOT
33
34%{__make} install \
35 DESTDIR=$RPM_BUILD_ROOT \
36 PREFIX=%{_prefix} \
37 Q=''
38
39%clean
40rm -rf $RPM_BUILD_ROOT
41
42%files
43%defattr(644,root,root,755)
44%doc README
45%attr(755,root,root) %{_bindir}/nsgenbind
This page took 0.125073 seconds and 4 git commands to generate.