summaryrefslogtreecommitdiffstats
path: root/basket.spec
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-11-19 15:34:21 +0100
committergregory guy <gregory-tde@laposte.net>2020-11-19 15:41:50 +0100
commit039945bdcc926c6460cfb2c4372f370744b16d22 (patch)
tree5dd94a6a1c8e0709037f43d3bba55c0a9c7ad7db /basket.spec
parent316ef8542788dcdbd65616807955c59238a5d208 (diff)
downloadbasket-039945bdcc926c6460cfb2c4372f370744b16d22.tar.gz
basket-039945bdcc926c6460cfb2c4372f370744b16d22.zip
Drop automake build support.
Add basic cmake build instructions. Delete empty files ChangeLog, NEWS and TODO. Rework of the README file. Update some cmake files with latest macros. Signed-off-by: gregory guy <gregory-tde@laposte.net>
Diffstat (limited to 'basket.spec')
-rw-r--r--basket.spec53
1 files changed, 0 insertions, 53 deletions
diff --git a/basket.spec b/basket.spec
deleted file mode 100644
index 628f3f5..0000000
--- a/basket.spec
+++ /dev/null
@@ -1,53 +0,0 @@
-%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}