diff --git a/README.md b/README.md index d4ce6b0..7c0eb02 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,8 @@ # bitmap +The bitmap program is a rudimentary tool for creating or editing rectangular images made up of 1's and 0's. +Bitmaps are used in X for defining clipping regions, cursor shapes, icon shapes, and tile and stipple patterns. + +The bmtoa and atobm filters convert bitmap files to and from ASCII strings. +They are most commonly used to quickly print out bitmaps and to generate versions for including in text. + diff --git a/bitmap.spec b/bitmap.spec new file mode 100644 index 0000000..7520eef --- /dev/null +++ b/bitmap.spec @@ -0,0 +1,61 @@ +Name: bitmap +Version: 1.0.7 +Release: 1mamba +Summary: bitmap (XBM) editor and converter utilities +Group: Graphical Desktop/Applications/Utilities +Vendor: openmamba +Distribution: openmamba +Packager: Tiziana Ferro +URL: http://xorg.freedesktop.org/ +Source: http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2 +License: MIT +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libX11-devel +BuildRequires: libXaw-devel +BuildRequires: libXmu-devel +BuildRequires: libXt-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +The bitmap program is a rudimentary tool for creating or editing rectangular images made up of 1's and 0's. +Bitmaps are used in X for defining clipping regions, cursor shapes, icon shapes, and tile and stipple patterns. + +The bmtoa and atobm filters convert bitmap files to and from ASCII strings. +They are most commonly used to quickly print out bitmaps and to generate versions for including in text. + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + + +%files +%defattr(-,root,root) +%{_bindir}/%{name} +%{_bindir}/atobm +%{_bindir}/bmtoa +%{_datadir}/X11/app-defaults/Bitmap* +%{_includedir}/X11/bitmaps/* +%{_mandir}/man?/* +%doc COPYING ChangeLog README + +%changelog +* Thu May 23 2013 Automatic Build System 1.0.7-1mamba +- automatic version update by autodist + +* Tue Apr 24 2012 Automatic Build System 1.0.6-1mamba +- automatic version update by autodist + +* Fri Apr 29 2011 Tiziana Ferro 1.0.5-1mamba +- package created by autospec \ No newline at end of file