-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Yuichiro Nakada
committed
Nov 28, 2023
1 parent
2aa251a
commit d6c37c1
Showing
4 changed files
with
473 additions
and
176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
%define name berry-controlcentre | ||
%define version 0.03 | ||
%define version 0.04 | ||
%define release b1 | ||
|
||
Name: %{name} | ||
|
@@ -13,32 +13,16 @@ Buildroot: %{_tmppath}/%{name}-%{version} | |
|
||
BuildArchitectures: i586 | ||
|
||
|
||
%description | ||
Control Centre for Berry Linux | ||
|
||
|
||
## | ||
## Setup Section | ||
## | ||
|
||
%prep | ||
%setup -q | ||
|
||
|
||
## | ||
## Build Section | ||
## | ||
|
||
%build | ||
qmake | ||
make | ||
|
||
|
||
## | ||
## Install Section | ||
## | ||
|
||
%install | ||
mkdir -p %{buildroot}/opt/berry | ||
strip BerryCC | ||
|
@@ -47,30 +31,15 @@ install -m 755 BerryCC %{buildroot}/opt/berry/ | |
mkdir -p %{buildroot}/usr/share/applications/Berry | ||
install -m 644 *.desktop %{buildroot}/usr/share/applications/Berry | ||
|
||
|
||
## | ||
## Clean Section | ||
## | ||
|
||
%clean | ||
[ -n "%{buildroot}" -a "%{buildroot}" != / ] && rm -rf %{buildroot} | ||
rm -rf $RPM_BUILD_DIR/%{name}-%{version} | ||
|
||
|
||
## | ||
## Files Section | ||
## | ||
|
||
%files | ||
%defattr (-,root,root) | ||
/opt/berry/* | ||
/usr/share/applications/Berry/*.desktop | ||
|
||
|
||
## | ||
## change log | ||
## | ||
|
||
%changelog | ||
* Wed Aug 31 2005 Yuichiro Nakada <[email protected]> | ||
- Create for Berry Linux |
Oops, something went wrong.