Skip to content

Commit 14d3d8f

Browse files
author
Simon Rowe
committed
Initial commit
1 parent 9019ccb commit 14d3d8f

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

helloworld.spec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Summary: An example package
2+
Name: helloworld
3+
Version: 1.0
4+
Release: 1
5+
License: GPL
6+
Group: Applications/System
7+
Source: file:///root/helloworld.tar.bz2
8+
9+
10+
%description
11+
A very simple package to demonstrate planex.
12+
13+
%prep
14+
%setup -n %{name}
15+
16+
%install
17+
rm -rf %{buildroot}
18+
find . | cpio -pdmv %{buildroot}
19+
20+
21+
%clean
22+
rm -rf %{buildroot}
23+
24+
%files
25+
%defattr(-,root,root)
26+
/usr/share/%{name}/README
27+
28+
%changelog
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
An example file.

0 commit comments

Comments
 (0)