gegl04-vl.spec 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. %define VER 0.4
  2. Summary: A graph based image processing framework
  3. Summary(ja): グラフベースの画像処理フレームワーク
  4. Name: gegl04
  5. Version: 0.4.12
  6. Release: 2%{?_dist_release}
  7. # The binary is under the GPL, while the libs are under LGPL
  8. License: LGPLv3+ and GPLv3+
  9. Group: System Environment/Libraries
  10. URL: http://www.gegl.org/
  11. Source0: https://download.gimp.org/pub/gegl/%{VER}/gegl-%{version}.tar.bz2
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: glib2-devel
  14. BuildRequires: gdk-pixbuf2-devel
  15. BuildRequires: pango-devel
  16. BuildRequires: babl-devel >= 0.1.56
  17. BuildRequires: json-glib-devel
  18. BuildRequires: perl
  19. BuildRequires: ruby
  20. BuildRequires: python3-devel
  21. BuildRequires: exiv2-devel
  22. BuildRequires: libgexiv2-devel
  23. BuildRequires: lcms2-devel
  24. BuildRequires: libpng-devel
  25. BuildRequires: libjpeg-devel
  26. BuildRequires: librsvg2-devel
  27. BuildRequires: libtiff-devel
  28. BuildRequires: libwebp-devel
  29. BuildRequires: LibRaw-devel
  30. BuildRequires: jasper-devel
  31. BuildRequires: lensfun-devel
  32. BuildRequires: asciidoc
  33. BuildRequires: SDL-devel
  34. BuildRequires: OpenEXR-devel
  35. BuildRequires: lua-devel
  36. BuildRequires: enscript
  37. BuildRequires: w3m
  38. BuildRequires: graphviz
  39. Obsoletes: gegl < 0.4
  40. Obsoletes: gegl03 < 0.4
  41. Provides: gegl = %{version}-%{release}
  42. Vendor: Project Vine
  43. Distribution: Vine Linux
  44. %description
  45. GEGL (Generic Graphics Library) is a graph based image processing framework.
  46. GEGLs original design was made to scratch GIMPs itches for a new
  47. compositing and processing core. This core is being designed to have
  48. minimal dependencies. and a simple well defined API.
  49. %package devel
  50. Summary: Development files for %{name}
  51. Summary(ja): %{name} の開発ファイル
  52. Group: Development/Libraries
  53. Requires: %{name} = %{version}-%{release}
  54. Requires: pkgconfig babl-devel glib2-devel
  55. Obsoletes: gegl-devel < 0.4
  56. Obsoletes: gegl03-devel < 0.4
  57. Provides: gegl-devel = %{version}-%{release}
  58. %description devel
  59. This package contains the libraries and header files needed for
  60. developing with %{name}.
  61. %prep
  62. %setup -q -n gegl-%{version}
  63. %build
  64. ./autogen.sh
  65. %{configure} --disable-static
  66. %{__make} %{?_smp_mflags}
  67. %install
  68. %{__rm} -rf ${RPM_BUILD_ROOT}
  69. %{__make} DESTDIR=${RPM_BUILD_ROOT} install INSTALL='install -p'
  70. find ${RPM_BUILD_ROOT} -name '*.la' -delete
  71. %find_lang gegl-%{VER}
  72. %clean
  73. %{__rm} -rf ${RPM_BUILD_ROOT}
  74. %post -p %{_syssbindir}/ldconfig
  75. %postun -p %{_syssbindir}/ldconfig
  76. %files -f gegl-%{VER}.lang
  77. %defattr(-, root, root, -)
  78. %license COPYING COPYING.LESSER
  79. %doc AUTHORS MAINTAINERS
  80. %doc docs/ChangeLog docs/NEWS.txt
  81. %{_bindir}/*
  82. %{_libdir}/libgegl-%{VER}.so.*
  83. %{_libdir}/libgegl-npd-%{VER}.so
  84. %{_libdir}/libgegl-sc-%{VER}.so
  85. %{_libdir}/gegl-%{VER}
  86. %{_libdir}/girepository-1.0/Gegl-%{VER}.typelib
  87. %files devel
  88. %defattr(-, root, root, -)
  89. %{_includedir}/gegl-%{VER}
  90. %{_libdir}/libgegl-%{VER}.so
  91. %{_libdir}/pkgconfig/gegl-%{VER}.pc
  92. %{_libdir}/pkgconfig/gegl-sc-%{VER}.pc
  93. %{_datadir}/gir-1.0/Gegl-%{VER}.gir
  94. %{_datadir}/gtk-doc/html/*
  95. %changelog
  96. * Mon Sep 09 2019 Toshiaki Ara <ara_t@384.jp> 0.4.12-2
  97. - rebuild with LibRaw-0.19.5
  98. - add BuildRequires: python3-devel
  99. * Mon Dec 31 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.4.12-1
  100. - new upstream release.
  101. - added O:gegl{,03}{,-devel}: none required.
  102. * Tue Oct 02 2018 Toshiaki Ara <ara_t@384.jp> 0.4.8-1
  103. - initial build