diff options
author | Mattias Andrée <maandree@kth.se> | 2017-12-10 23:55:26 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-12-10 23:55:26 +0100 |
commit | f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a (patch) | |
tree | 5ee68c7907baf8666d5d585ae491129ffcfdb6e5 /INSTALL | |
parent | update news and makefile (diff) | |
download | sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.gz sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.bz2 sleeping-getty-f7f87b788bdfdaed3e69b60fd9ce9d2c17b06e0a.tar.xz |
Simplify and cahgne license1.1
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 98 |
1 files changed, 0 insertions, 98 deletions
diff --git a/INSTALL b/INSTALL deleted file mode 100644 index bb33e41..0000000 --- a/INSTALL +++ /dev/null @@ -1,98 +0,0 @@ -Type './configure --help' for configuration options. The normal settings for a -GNU package should work. If not, please make a bug report. - - On a common GNU/Linux distribution the following should - be sufficient for most users: - - ./configure --prefix=/usr - make - make install DESTDIR="somewhere you want the files for now" - # Now let the package manager put the files in place... - - Or for an unstaged install: - - ./configure --prefix=/usr - make - sudo make install - -By default any applicable pre-install, post-install, pre-uninstall, and -post-install commands is run. This suppress these, run 'make' with 'N=true' -or 'N=:'. IF you want to know which these commands are, you can use the -methods specificed in the GNU Coding Standards. Another method is found in -mk/README. However, for this packages, these will be: - - infodir="usr/local/share/info" ## Assuming default prefix. - - post_install () { - install-info -- "${infodir}/sleeping-getty.info" "${infodir}/dir" - } - - pre_uninstall () { - install-info --delete -- "${infodir}/sleeping-getty.info" "${infodir}/dir" - } - - -──────────────────────────────────────────────────────────────────────────────── -INTERNATIONALISATION -──────────────────────────────────────────────────────────────────────────────── - -You can select which translations of the man page you -want to install too: - - ./configure MAN_LOCALES=sv - -(Note, there are no translation as of yet.) - - -──────────────────────────────────────────────────────────────────────────────── -CUSTOMISED COMPILATION -──────────────────────────────────────────────────────────────────────────────── - -The makefile is configured to compile the C code with -O2 -g, you can -change this by setting OPTIMISE, or with CFLAGS and LDFLAGS if you want -to change all optional flags compiling and linking flags: - - ./configure OPTIMISE="-Og -g" - - -──────────────────────────────────────────────────────────────────────────────── -CUSTOMISED INSTALLATION -──────────────────────────────────────────────────────────────────────────────── - -If you want to install absolutely everything, you can -instead use the commands below: - - make everything - make install-everything DESTDIR="pkg" - -Or if you only want to absolute basics: - - make base - make install-base DESTDIR="pkg" - -You can select freely what parts of the package to install and not -to install. This rules are available: - -┌─────────────┬─────────────────────┬────────────────────────────────────────────┐ -│ COMPILATION │ INSTALLATION │ DESCRIPTION │ -├─────────────┼─────────────────────┼────────────────────────────────────────────┤ -│ base │ install-base │ Install be basics: │ -│ cmd │ install-cmd │ Install the sleeping-getty command. │ -│ │ install-copyright │ Install GNU GPL version 3. │ -│ doc │ install-doc │ Include all manuals: │ -│ info │ install-info │ Include info manual. (Texinfo) │ -│ dvi │ install-dvi │ Include DVI manual. (Texinfo) │ -│ pdf │ install-pdf │ Include PDF manual. (Texinfo) │ -│ ps │ install-ps │ Include PostScript manual. (Texinfo) │ -│ html │ install-html │ Include multifile HTML manual. (Texinfo) │ -│ │ install-man │ Include man pages. │ -└─────────────┴─────────────────────┴────────────────────────────────────────────┘ - -install, install-everything, install-base, and install-cmd, have alternatives -that installs a stripped binary: install-strip, install-everything-strip, -install-base-strip, and install-cmd-strip, respectively. - -The untranslated man page is installed via the rule install-man-untranslated. -Additional translations are installed via the rule install-man-locale, which -installs the locales listed in MAN_LOCALES. - |