Javaでアプリケーションを作成しました。そのアプリケーションの rpm ファイルを作成しようとしました。しかし、何がエラーなのかわかりませんでした。rpm ファイルを作成しているときに、No file or directory found というエラーを受け取りました。
http://javaworkshop.wordpress.com/
どなたか、fedora10 linux の rpm をビルドする方法を教えてください。
私のアプリケーション (単純な Swing アプリケーション) は、installer.tar.gz です。
installer.spec
---------------
Name: installer
Summary: The foo package does foo
Version :1
Release: 1
License: GPL
Group: Applications/Internet
URL: http://www.example.org/
Source0: %{name}.tar.gz
Buildroot: %{_tmppath}/%{name}-root
%description
This package performs the foo operation.
%prep
%setup -q
%build
%confifure
make
%install
rm -fr %{buildroot}
%makeinstall
%clean
rm -fr %{buildroot}
%changelog
----------------------
rpmbuild -ba ~/rpm/SPECS/installer.spec を実行すると、「No file or directory found error」が見つかりました
ありがとうスニル・クマール・サフー