|
From: HAYASHI K. <nul...@cl...> - 2013-01-15 08:05:18
|
HAYASHI Kentaro 2013-01-15 16:38:09 +0900 (Tue, 15 Jan 2013) New Revision: f37b93e8d503c9c697b7173936c6eea4df238092 https://github.com/clear-code/cutter/commit/f37b93e8d503c9c697b7173936c6eea4df238092 Log: rpm fedora: add gstreamer subpackage Modified files: packages/rpm/fedora/cutter.spec.in Modified: packages/rpm/fedora/cutter.spec.in (+22 -6) =================================================================== --- packages/rpm/fedora/cutter.spec.in 2013-01-15 16:37:21 +0900 (3f036de) +++ packages/rpm/fedora/cutter.spec.in 2013-01-15 16:38:09 +0900 (3ff6bda) @@ -37,12 +37,6 @@ GUI Test module for Cutter. Cutter is a xUnit family Unit Testing Framework for C/C++. Cutter provides easy to write test and easy to debug code environment. -%prep -# follow guide line: https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries -# bundled pcre library is required for older version of glib (2.12) only. -rm -fr %{buildroot}/glib-compatible/pcre -%setup -q - %package report Summary: PDF report module for Cutter Group: Development/Libraries @@ -54,6 +48,23 @@ PDF report module for Cutter. Cutter is a xUnit family Unit Testing Framework for C/C++. Cutter provides easy to write test and easy to debug code environment. +%package gstreamer +Summary: Cutter GStreamer plugin +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: gstreamer + +%description gstreamer +Cutter GStreamer plugin. +Cutter is a xUnit family Unit Testing Framework for C/C++. +Cutter provides easy to write test and easy to debug code environment. + +%prep +# follow guide line: https://fedoraproject.org/wiki/Packaging:No_Bundled_Libraries +# bundled pcre library is required for older version of glib (2.12) only. +rm -fr %{buildroot}/glib-compatible/pcre +%setup -q + %build %configure --disable-bfd sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool @@ -140,6 +151,11 @@ make check LD_LIBRARY_PATH=$(pwd)/cppcutter/.libs:$(pwd)/cutter/.libs:$(pwd)/gdk %{_libdir}/cutter/module/factory/report/pdf_factory.so %{_libdir}/cutter/module/report/pdf.so +%files gstreamer +%defattr(-, root, root, -) +%dir %{_libdir}/gstreamer-0.10 +%{_libdir}/gstreamer-0.10/libgstcuttertest.so + %changelog * Tue Jan 15 2013 HAYASHI Kentaro <ha...@cl...> - 1.2.2-3 - update packages Summary: section. |