]> git.pld-linux.org Git - packages/test.git/blob - test.spec
325be10e47a9c24105940fdecb09ddc8dfa3ec0e
[packages/test.git] / test.spec
1 # skeleton for rpm testing.
2 # create your own test in separate branch, keep master branch clean
3 #
4 # git checkout -b test/feature
5 # git push origin -u test/feature
6 Summary:        testing something
7 Name:           test
8 Version:        1
9 Release:        7
10 License:        GPL
11 Group:          Applications/System
12 URL:            http://www.pld-linux.org/
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 testing something
17
18 %prep
19 %setup -qcT
20
21 %install
22 rm -rf $RPM_BUILD_ROOT
23 install -d $RPM_BUILD_ROOT
24
25 %clean
26 rm -rf $RPM_BUILD_ROOT
27
28 %files
29 %defattr(644,root,root,755)
This page took 0.039246 seconds and 2 git commands to generate.