Displaying 3 results from an estimated 3 matches for "find_lang".
2005 Feb 25
2
1.36 again
Given that no 1.36 has appeared from Fedora Core, I thought I would create the
rpm myself. I took the 1.35-11.2 src.rpm from FC3 and updated the spec file
for 1.36. However, the build fails.
Has anyone successfully created a 1.36 rpm for FC3? If so, what did you need
to do?
Gene
2010 Oct 03
1
help with spec file
...ows sound
waves, which makes it easier to synchronise subtitles to voices.
Subtitle Editor is free software released under the GNU General Public
License (GPL).
%prep
%setup -q
#%patch -p1 -b .buildroot
%build
%configure --disable-debug
%{__make}
%install
%{__rm} -rf %{buildroot}
%makeinstall
%find_lang %{name}
%clean
%{__rm} -rf %{buildroot}
%files -f %{name}.lang
%defattr(-, root, root, 0755)
%doc AUTHORS ChangeLog INSTALL NEWS TODO README COPYING
%{_bindir}/subtitleeditor
%{_datadir}/subtitleeditor/
%{_datadir}/icons/hicolor/*
%exclude %{_datadir}/icons/hicolor/icon-theme.cache
%{_datadir}/ap...
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
...install_path confdoc=%{_mandir}/man5
+
+# Create lib directory, used for holding software to be installed in guests
+statedir=$RPM_BUILD_ROOT%{_localstatedir}/lib/virt-v2v
+mkdir -p $statedir/software
+
+mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
+cp v2v/virt-v2v.conf $RPM_BUILD_ROOT%{_sysconfdir}/
+
+%find_lang %{name}
+
+# Not clear why this is being created as there is nothing arch-specific in
+# virt-v2v. It isn't packaged, though, so we need to delete it.
+find $RPM_BUILD_ROOT/%{perl_archlib} -name .packlist -type f | xargs rm
+
+
+%check
+./Build test
+
+
+%clean
+rm -rf $RPM_BUILD_ROOT
+
+
+%fil...