File hellow.spec of Package hellow
# norootforbuild
Name: hellow
Version: 0.1
Release: 2
Summary:Hello World
Group: Application/Education
License: GPLv3
Url: http://cheersounds.blogbus.com
Source0: %name-%version.tar.bz2
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Simple and Stupid hello world
%prep
%setup -n %name-%version
%build
make CFLAGS="$RPM_OPT_FLAGS"
%install
mkdir -p $RPM_BUILD_ROOT%{_bindir}
install -m 755 hellow $RPM_BUILD_ROOT%{_bindir}
%clean
rm -rf $RPM_BUILD_ROOT
#%post
#%postun
%files
%defattr(-,root,root)
%{_bindir}/hellow
%changelog