539736a11e
On case-insensitive filesystems it is not such a good idea to have directories that only differ in case. Packages should be always split into lowercased directories. The test data is modified to include some packages starting with uppercase letters. The example in code can be verified by running `nosetests --with-doctest`. Signed-off-by: Lubomír Sedlář <lsedlar@redhat.com>
45 lines
671 B
RPMSpec
45 lines
671 B
RPMSpec
Name: Dummy-firefox
|
|
Version: 16.0.1
|
|
Release: 1
|
|
License: LGPLv2
|
|
Summary: A dummy firefox package
|
|
BuildRequires: dummy-krb5-devel
|
|
BuildRequires: Dummy-xulrunner
|
|
Requires: Dummy-xulrunner
|
|
|
|
%description
|
|
A dummy firefox package
|
|
|
|
%package debuginfo
|
|
Summary: A dummy firefox-debuginfo package
|
|
Group: Development/Debug
|
|
|
|
%description debuginfo
|
|
A dummy firefox-debuginfo package
|
|
|
|
|
|
#%prep
|
|
#%setup -q
|
|
|
|
|
|
%build
|
|
echo OK
|
|
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
mkdir $RPM_BUILD_ROOT
|
|
|
|
|
|
%clean
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
%files
|
|
%files debuginfo
|
|
|
|
|
|
%changelog
|
|
* Tue Oct 18 2011 Daniel Mach <dmach@redhat.com> - 16.0.1-1
|
|
- First release
|