summaryrefslogtreecommitdiffstats
path: root/kdpkg-install
diff options
context:
space:
mode:
authorgregory guy <gregory-tde@laposte.net>2020-07-23 13:59:29 +0200
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-07-24 11:48:46 +0900
commitbc0e1a135a3d2f518a79f5c9117ea61c2ee34468 (patch)
treebf387d2423801368c332edfffe161e73451459ce /kdpkg-install
parent8b0b12ec3264293b72e3f5166a6cbad889e96a7c (diff)
downloadkdpkg-bc0e1a135a3d2f518a79f5c9117ea61c2ee34468.tar.gz
kdpkg-bc0e1a135a3d2f518a79f5c9117ea61c2ee34468.zip
Drop automake build support.
Add basic cmake build instructions. Remove empty files ChangeLog, TODO and NEWS. Rework of the README file. Some cosmetics. Signed-off-by: gregory guy <gregory-tde@laposte.net> (cherry picked from commit d6ae994c10d1d3e9df01d352f95ac825e51c01e2)
Diffstat (limited to 'kdpkg-install')
-rw-r--r--kdpkg-install/Makefile.am32
1 files changed, 0 insertions, 32 deletions
diff --git a/kdpkg-install/Makefile.am b/kdpkg-install/Makefile.am
deleted file mode 100644
index a6bcc65..0000000
--- a/kdpkg-install/Makefile.am
+++ /dev/null
@@ -1,32 +0,0 @@
-# set the include path for X, qt and KDE
-AM_CPPFLAGS = $(all_includes)
-
-# these are the headers for your project
-noinst_HEADERS = install.h console.h
-
-# let automoc handle all of the meta source files (moc)
-METASOURCES = AUTO
-
-# the application source, library search path, and link libraries
-kdpkg_install_SOURCES = main.cpp install.cpp installdialog.ui process.cpp console.cpp consoledialog.ui
-kdpkg_install_LDFLAGS = $(KDE_RPATH) $(all_libraries) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeio
-kdpkg_install_LDADD = $(LIB_TDEUI)
-
-
-# application
-xdg_apps_DATA = kdpkg-install.desktop
-bin_PROGRAMS = kdpkg-install
-
-sharedir = $(pkgdatadir)
-install-data-local:
- $(mkinstalldirs) $(DESTDIR)$(sharedir)
- cp -aR $(srcdir)/icons $(DESTDIR)$(sharedir)/
- cp -aR $(srcdir)/sh $(DESTDIR)$(sharedir)/
-
-
-
-# translation
-messages: rc.cpp
- $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
- $(XGETTEXT) *.cpp -o $(podir)/kdpkg-install.pot
-