X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=Makefile;h=a03e991ca7af2645b21191cc7a9c0bb6c55cef8e;hb=refs%2Fheads%2Fmaster;hp=d9f31971cec099d2cb16721a490cd927b728ec8d;hpb=008017ce1e1d6cf19f62451ac84b11520b80b748;p=tfortune.git diff --git a/Makefile b/Makefile index d9f3197..a03e991 100644 --- a/Makefile +++ b/Makefile @@ -24,12 +24,12 @@ SLOGAN := fortune cookies with tags AUTHOR := Andre Noll EMAIL := maan@tuebingen.mpg.de COPYRIGHT_YEAR := 2019 -PACKAGE_HOMEPAGE := http://people.tuebingen.mpg.de/maan/$(PACKAGE)/ -CLONE_URL := git://git.tuebingen.mpg.de/$(PACKAGE)/ -GITWEB_URL := http://git.tuebingen.mpg.de/$(PACKAGE).git +PACKAGE_HOMEPAGE := https://people.tuebingen.mpg.de/maan/$(PACKAGE)/ +CLONE_URL := https://git.tuebingen.mpg.de/$(PACKAGE)/ +GITWEB_URL := https://git.tuebingen.mpg.de/$(PACKAGE).git LICENSE := GNU GPL version 3 LICENSE_URL := https://www.gnu.org/licenses/gpl-3.0-standalone.html -HOME_URL := http://people.tuebingen.mpg.de/maan/ +HOME_URL := https://people.tuebingen.mpg.de/maan/ define DESCRIPTION1 := Like fortune(6), tfortune is a Unix command line utility which prints @@ -60,6 +60,7 @@ uname_rs := $(shell uname -rs) exe := tfortune man := tfortune.6.gz +epigrams := epigrams/en.tfortunes all: $(man) $(exe) man build-indep: $(man) exe build-arch: $(exe) @@ -198,6 +199,7 @@ maintainer-clean: git clean -dfqx > /dev/null 2>&1 mandir := $(datarootdir)/man/man6 +epidir := $(datadir)/tfortunes/epigrams INSTALL ?= install INSTALL_PROGRAM ?= $(INSTALL) -m 755 INSTALL_DATA ?= $(INSTALL) -m 644 @@ -206,9 +208,10 @@ ifneq ($(findstring strip, $(MAKECMDGOALS)),) endif install install-strip: all - $(MKDIR_P) $(DESTDIR)$(bindir) $(DESTDIR)$(mandir) + $(MKDIR_P) $(DESTDIR)$(bindir) $(DESTDIR)$(mandir) $(DESTDIR)$(epidir) $(INSTALL_PROGRAM) $(strip_option) $(exe) $(DESTDIR)$(bindir) $(INSTALL_DATA) $(man) $(DESTDIR)$(mandir) + $(INSTALL_DATA) $(epigrams) $(DESTDIR)$(epidir) define README := tfortune - $(SLOGAN)