| Sebastian Scholz 2004-01-23, 7:49 pm |
| Hi
I currently try to create a RPM package myself and its works so far. The
installation itself seems to work too, but the files that are inside the RPM
package are nowhere seen ? Any idea ? What happens to the /usr/testfile.tar
file and why am I not seeing the echo output ???
Here is the spec file I use :
---- test.spec ------------------
Summary: Test RPM.
Name: TEST
Version: 1.0.2
Release: 3
Vendor: TESTCompany
Requires: testpackage >=1.0.1
%description
A test rpm.
%define INSTALL_DIR /usr/teststuff
%prep
%install
echo Install Test Test
%clean
rm -rf $RPM_BUILD_ROOT
%files
/usr/testfile.tar
%changelog
* Tue Nov 18 2003 test <test@test.com>
- test (release 3)
--------------------------------
Thanks,
Sebastian
|