home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / linux / utilities-general / fiasco.spec < prev    next >
Text File  |  2005-10-03  |  2KB  |  94 lines

  1. #  fiasco.spec        
  2. #
  3. #  Written by:        Ullrich Hafner
  4. #        
  5. #  This file is part of FIASCO (Fractal Image And Sequence COdec)
  6. #  Copyright (C) 1994-2000 Ullrich Hafner <hafner@bigfoot.de>
  7. #
  8. #
  9. #  $Date: 2000/07/18 19:54:40 $
  10. #  $Author: hafner $
  11. #  $Revision: 5.2 $
  12. #  $State: Exp $
  13.  
  14. %define prefix  /usr
  15. %define version 1.1
  16. Name: fiasco
  17. Version: %{version}
  18. Release: 1
  19. Summary: Fractal Image And Sequence COdec based on Weighted Finite Automata
  20. Group: Applications/Graphics
  21. Copyright: (c) 2000 Ullrich Hafner
  22. Packager: Ullrich Hafner <hafner@bigfoot.de>
  23. Vendor: NOP
  24. Source: fiasco-%{version}.tar.gz
  25. BuildRoot: /var/tmp/fiasco-root
  26. Prefix: %{prefix}
  27.  
  28. %description
  29. This is a image and video codec based on Weighted Finite
  30. Automata. This codec is part of Ullrich Hafner's Ph.D. thesis
  31. 'Low Bit-Rate Image and Video Coding with Weighted Finite Automata',
  32. University Wuerzburg, 1999.
  33.  
  34. %package devel
  35. Summary: Fractal Image And Sequence COding library
  36. Group: Applications/Graphics
  37.  
  38. %description devel
  39. This is a image and video coding library based on Weighted Finite
  40. Automata. This library is part of Ullrich Hafner's Ph.D. thesis
  41. 'Low Bit-Rate Image and Video Coding with Weighted Finite Automata',
  42. University Wuerzburg, 1999.
  43.  
  44. %package analysis
  45. Summary: Fractal Image And Sequence COding analysis tools
  46. Group: Applications/Graphics
  47.  
  48. %description analysis
  49. These are two analysis tools to visualize FIASCO streams. These
  50. tools are part of Ullrich Hafner's Ph.D. thesis 'Low Bit-Rate Image
  51. and Video Coding with Weighted Finite Automata', University Wuerzburg,
  52. 1999.
  53.  
  54. %prep
  55. %setup
  56.  
  57. %build
  58. CFLAGS=$RPM_OPT_FLAGS ./configure --prefix=%{prefix}
  59. make
  60.  
  61. %install
  62. make install-strip prefix=$RPM_BUILD_ROOT%{prefix}
  63.  
  64. %clean
  65. rm -rf $RPM_BUILD_ROOT
  66.  
  67. %files
  68. %defattr(-,root,root)
  69. %{prefix}/bin/cfiasco
  70. %{prefix}/bin/dfiasco
  71. %{prefix}/bin/efiasco
  72. %{prefix}/bin/pnmpsnr
  73. %{prefix}/share/fiasco/*
  74. %doc README INSTALL COPYING ChangeLog TODO AUTHORS 
  75. %doc %{prefix}/man/man1/cfiasco.1
  76. %doc %{prefix}/man/man1/dfiasco.1
  77. %doc %{prefix}/man/man1/efiasco.1
  78. %doc %{prefix}/man/man1/pnmpsnr.1
  79.  
  80. %files devel
  81. %defattr(-,root,root)
  82. %doc README INSTALL COPYING ChangeLog TODO AUTHORS doc/README.LIB 
  83. %{prefix}/lib/*
  84. %{prefix}/include/*
  85. %doc %{prefix}/man/man3/*
  86.  
  87. %files analysis
  88. %defattr(-,root,root)
  89. %doc README INSTALL COPYING ChangeLog AUTHORS 
  90. %{prefix}/bin/afiasco
  91. %{prefix}/bin/bfiasco
  92. %doc %{prefix}/man/man1/afiasco.1
  93. %doc %{prefix}/man/man1/bfiasco.1
  94.