~kendfinger-deactivatedaccount/gnu-gsrc/gsrc

« back to all changes in this revision

Viewing changes to pkg/gnu/challenger/Makefile

  • Committer: carlhansen at gnu
  • Date: 2023-11-18 07:30:17 UTC
  • Revision ID: carlhansen@gnu.org-20231118073017-q53vyl4mp80q1ak1
update challenger to 0.9.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright ©2023 Carl Hansen <carlhansen@gnu.org>
 
2
#
 
3
# This file is part of GSRC, the GNU Source Release Collection.
 
4
# http://www.gnu.org/software/gsrc
 
5
 
 
6
 
 
7
# GSRC is free software: you can redistribute it and/or modify it
 
8
# under the terms of the GNU General Public License as published by
 
9
# the Free Software Foundation, either version 3 of the License, or
 
10
# (at your option) any later version.
 
11
#
 
12
# GSRC is distributed in the hope that it will be useful, but WITHOUT
 
13
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 
14
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
 
15
# License for more details.
 
16
#
 
17
# You should have received a copy of the GNU General Public License
 
18
# along with GSRC.  If not, see <http://www.gnu.org/licenses/>.
 
19
 
 
20
# Send bug reports and comments about GSRC problems to bug-gsrc@gnu.org
 
21
 
 
22
NAME = challenger
 
23
GARNAME = challenger
 
24
GARVERSION = 0.9.3
 
25
HOME_URL = http://taler.net
 
26
DESCRIPTION = challenger is part of taler payment system
 
27
define BLURB
 
28
Challenger implements an HTTP server that allows clients to validate
 
29
that a user is able to receive TAN codes at a given address using
 
30
OAuth 2.0-style authorization.
 
31
Envisioned use-cases are KYC checks where a user must prove that they
 
32
are able to receive SMS, e-mails or physical mail.
 
33
endef
 
34
 
 
35
######################################################################
 
36
 
 
37
MASTER_SITES = $(MASTER_GNU)
 
38
MASTER_SUBDIR = taler/
 
39
DISTFILES = $(DISTNAME).tar.gz
 
40
SIGFILES = $(DISTNAME).tar.gz.sig
 
41
 
 
42
BUILDDEPS =
 
43
LIBDEPS =
 
44
######################################################################
 
45
 
 
46
include ../../../gar/gar.lib/autotools.mk
 
47
include config.mk
 
48