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.
basket/basket.spec

54 lines
1.4 KiB

%define name basket
%define version 1.0.3.1
%define release mantic0
Summary: Taking care of your ideas.
Name: %{name}
Version: %{version}
Release: %{release}
License: GPL
Vendor: slaout@linux62.org
Url: http://basket.kde.org/
Packager: packages@mantic.org
Group: Utils
Source: %{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}
%description
Taking care of your ideas.
A note-taking application that makes it easy to write down ideas as you think, and quickly find them back later. Organizing your notes has never been so easy.
%prep
%setup
if [ "`tde-config --prefix`" ]; then
CONFIGURE_PREFIX="`tde-config --prefix`"
elif [ "${TDEDIR}" ]; then
CONFIGURE_PREFIX="${TDEDIR}"
elif [ -d "/opt/kde" ]; then
CONFIGURE_PREFIX="/opt/kde"
elif [ -d "/opt/trinity" ]; then
CONFIGURE_PREFIX="/opt/trinity"
else
CONFIGURE_PREFIX="/usr"
fi
./configure --prefix="${CONFIGURE_PREFIX}" --enable-final
%build
%configure
#%make
%install
make install DESTDIR=$RPM_BUILD_ROOT
cd $RPM_BUILD_ROOT
find . -type d | sed '1,2d;s,^\.,\%attr(-\,root\,root) \%dir ,' > /var/tmp/file.list.%{name}
find . -type f | sed 's,^\.,\%attr(-\,root\,root) ,' >> /var/tmp/file.list.%{name}
find . -type l | sed 's,^\.,\%attr(-\,root\,root) ,' >> /var/tmp/file.list.%{name}
%clean
rm -rf $RPM_BUILD_ROOT/*
rm -rf $RPM_BUILD_DIR/%{name}-%{version}
rm -rf /var/tmp/file.list.%{name}
%files -f /var/tmp/file.list.%{name}