You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.4 KiB
56 lines
1.4 KiB
Summary: NUT GUI Interface |
|
Name: knutclient |
|
Version: 0.9.5 |
|
Release: 1 |
|
License: GPL |
|
Vendor: Daniel Prynych <Daniel.Prynych@alo.cz> |
|
Url: http://www.knut.noveradsl.cz/knutclient |
|
Packager: Daniel Prynych <Daniel.Prynych@alo.cz> |
|
Group: Applications/System |
|
Prefix: /usr |
|
Source: knutclient-0.9.5.tar.gz |
|
BuildRoot: %{_tmppath}/build-root-%{name} |
|
|
|
%description |
|
Knutclient is a GUI interface for UPS system NUT |
|
|
|
%prep |
|
%setup |
|
CFLAGS="$RPM_OPT_FLAGS" CXXFLAGS="$RPM_OPT_FLAGS" ./configure --prefix=%{prefix} $LOCALFLAGS |
|
|
|
%build |
|
# Setup for parallel builds |
|
numprocs=`egrep -c ^cpu[0-9]+ /proc/stat || :` |
|
if [ "$numprocs" = "0" ]; then |
|
numprocs=1 |
|
fi |
|
|
|
make -j$numprocs |
|
|
|
%install |
|
make install-strip DESTDIR=$RPM_BUILD_ROOT |
|
|
|
cd $RPM_BUILD_ROOT |
|
|
|
#mkdir -p usr/share/applications/ |
|
#cp -a usr/share/applnk/Applications/knutclient.desktop usr/share/applications/ |
|
#rm -rf usr/share/applnk |
|
|
|
# as defattr point to root,root this will not work |
|
#chown desktop.desktop kde-knutclient.desktop |
|
|
|
cd $RPM_BUILD_ROOT |
|
|
|
find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > $RPM_BUILD_DIR/file.list.%{name} |
|
find . -type f | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.%{name} |
|
find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> $RPM_BUILD_DIR/file.list.%{name} |
|
|
|
%clean |
|
rm -rf $RPM_BUILD_ROOT/* |
|
rm -rf $RPM_BUILD_DIR/%{name} |
|
rm -rf ../file.list.%{name} |
|
|
|
|
|
%files -f ../file.list.%{name} |
|
%defattr(-,root,root,0755) |
|
|
|
|