source: trunk/secdapt/Makefile @ 441

Last change on this file since 441 was 431, checked in by g7moreau, 4 years ago
  • Update pkg build
File size: 2.2 KB
Line 
1DESTDIR=
2
3BINDIR=/usr/bin
4MANDIR=/usr/share/man/man1
5SHAREDIR=/usr/share/secdapt
6COMPDIR=/etc/bash_completion.d
7
8.PHONY: all ignore install update sync upload stat help pkg
9
10all:
11        pod2man secdapt | gzip > secdapt.1.gz
12        pod2html secdapt > secdapt.html
13
14install: update
15
16update:
17        @install -d -m 0755 -o root -g root $(DESTDIR)/$(SHAREDIR)
18        @install -d -m 0755 -o root -g root $(DESTDIR)/$(MANDIR)
19        @install -d -m 0755 -o root -g root $(DESTDIR)/$(COMPDIR)
20
21        install    -m 0755 -o root -g root secdapt $(DESTDIR)/$(BINDIR)
22
23        install    -m 0644 -o root -g root secdapt.1.gz $(DESTDIR)/$(MANDIR)
24
25        install    -m 0644 -o root -g root secdapt.bash_completion $(DESTDIR)/$(COMPDIR)/secdapt
26
27sync:
28        svn update
29
30upload:
31        cadaver --rcfile=cadaverrc
32
33pkg: all
34        ./make-package-debian
35
36stat:
37        svn log|egrep '^r[[:digit:]]'|egrep -v '^r1[[:space:]]'|awk '{print $$3}'|sort|uniq -c                 |gnuplot -p -e 'set style fill solid 1.00 border 0; set style histogram; set style data histogram; set xtics rotate by 0; set style line 7 linetype 0 linecolor rgb "#222222"; set grid ytics linestyle 7; set xlabel "User contributor" font "bold"; set ylabel "Number of commit" font "bold"; plot "/dev/stdin" using 1:xticlabels(2) title "commit" linecolor rgb "#666666"'
38        (echo '0 2015'; svn log|egrep '^r[[:digit:]]'|awk '{print $$5}'|cut -f 1 -d '-'|sort|uniq -c)|sort -k 2|gnuplot -p -e 'set style fill solid 1.00 border 0; set style histogram; set style data histogram; set xtics rotate by 0; set style line 7 linetype 0 linecolor rgb "#222222"; set grid ytics linestyle 7; set xlabel "Year"             font "bold"; set ylabel "Number of commit" font "bold"; plot "/dev/stdin" using 1:xticlabels(2) title "commit" linecolor rgb "#666666"'
39
40help:
41        @echo "Possibles targets:"
42        @echo " * all     : make manual"
43        @echo " * install : complete install"
44        @echo " * update  : update install (do not update cron file)"
45        @echo " * sync    : sync with official repository"
46        @echo " * upload  : upload on public dav forge space"
47        @echo " * stat    : svn stat with gnuplot graph"
48        @echo " * pkg     : build Debian package"
49        @echo "ignore - svn rules to ignore some files"
50
51ignore: svnignore.txt
52        svn propset svn:ignore -F svnignore.txt .
53        svn propset svn:keywords "Id" secdapt
Note: See TracBrowser for help on using the repository browser.