diff options
author | gregory guy <[email protected]> | 2020-07-23 13:59:29 +0200 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-07-23 13:59:29 +0200 |
commit | d6ae994c10d1d3e9df01d352f95ac825e51c01e2 (patch) | |
tree | 99eba4f5d2d8b3995e48ef7ccdad13d4544a9aba /kdpkg-install | |
parent | d8c38442e0a6948f1d24c7aaef05b1c4ee8683ea (diff) | |
download | kdpkg-d6ae994c10d1d3e9df01d352f95ac825e51c01e2.tar.gz kdpkg-d6ae994c10d1d3e9df01d352f95ac825e51c01e2.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 <[email protected]>
Diffstat (limited to 'kdpkg-install')
-rw-r--r-- | kdpkg-install/Makefile.am | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/kdpkg-install/Makefile.am b/kdpkg-install/Makefile.am deleted file mode 100644 index 7bf4d33..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_TQT) -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 - |