diff options
author | gregory guy <[email protected]> | 2020-03-23 18:35:35 +0100 |
---|---|---|
committer | gregory guy <[email protected]> | 2020-03-24 13:42:21 +0100 |
commit | 4986d5902c36dc2b286e42591114d569af7e8517 (patch) | |
tree | 66e83984a7e1c80875aa6c2bf1e0abbbb81eafad /configure.in.in | |
parent | e9f4918326e9b05edf5ed848f1b4c0403518c449 (diff) | |
download | tdeio-apt-4986d5902c36dc2b286e42591114d569af7e8517.tar.gz tdeio-apt-4986d5902c36dc2b286e42591114d569af7e8517.zip |
Drop automake build support.
Add basic cmake build instructions.
Delete empty files TODO and NEWS.
Delete the folder templates.
Rework of the README file.
Add the "MODULE" directive to the plugin build.
Signed-off-by: gregory guy <[email protected]>
Diffstat (limited to 'configure.in.in')
-rw-r--r-- | configure.in.in | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/configure.in.in b/configure.in.in deleted file mode 100644 index fcc6e16..0000000 --- a/configure.in.in +++ /dev/null @@ -1,22 +0,0 @@ -#MIN_CONFIG(3.0.0) - -AM_INIT_AUTOMAKE(tdeio-apt, 0.13.2) -AC_C_BIGENDIAN -AC_CHECK_KDEMAXPATHLEN - -AC_ARG_WITH(rpm, - [ --with-rpm use rpm instead of dpkg ], - [use_rpm=$withval], - [use_rpm=no]) - -echo -n "Package manager to use... " -AM_CONDITIONAL(USE_RPM, test "x$use_rpm" != "xno") - -if [ test "x$use_rpm" != "xno" ]; then - AC_DEFINE_UNQUOTED(USE_RPM, 1, [Define if your package manager is not dpkg but RPM]) - echo "rpm" -else - echo "dpkg" -fi - - |