Summary: A simple program that takes a string as an argument or input, colorizes it, and prints it to stdout. Name: color Version: 0.0.8 Release: 1 License: Apache License, Version 2.0 Group: Applications/Text Source: color-master.zip # Patch: color-0.0.8-buildroot.patch BuildRoot: /var/tmp/%{name}-buildroot %description This program takes a single string as an argument or input, colorizes it, and prints it to stdout. %prep %setup -q # %patch -p1 -b .buildroot %build make RPM_OPT_FLAGS="$RPM_OPT_FLAGS" %install rm -rf $RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT/usr/bin mkdir -p $RPM_BUILD_ROOT/usr/man/manl install -s -m 755 color $RPM_BUILD_ROOT/usr/bin/color install -m 644 color.1 $RPM_BUILD_ROOT/usr/man/manl/color.1 %clean rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc README TODO COPYING ChangeLog /usr/bin/color /usr/man/manl/color.1 %changelog * Sat Oct 03 2015 Austin Dunn - Added interactive mode.