Overview
Comment:correction chemin manpage
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 9a9d05d768a293f412d9cb26e78daaff5dcad2d2
User & Date: bohwaz on 2014-04-23 05:59:35
Other Links: manifest | tags
Context
2014-04-23
06:01
PrĂ©caution suppression donnĂ©es check-in: fb6ee9f75b user: bohwaz tags: trunk
05:59
correction chemin manpage check-in: 9a9d05d768 user: bohwaz tags: trunk
05:52
Le bon chemin debian check-in: 88aacaa41a user: bohwaz tags: trunk
Changes

Modified debian/makedeb.sh from [8e360813d3] to [e3e1f06e1f].

75
76
77
78
79
80
81

82
83
84
85
86
87
88
89
# doc.
DOCDIR=${DEBLOCALPREFIX}/share/doc/${PACKAGE_DEBNAME}

true && {
    echo "Generating doc..."
    cp ${SRCDIR}/README ${DOCDIR}
    a2x --doctype manpage --format manpage ${THISDIR}/manpage.txt

    gzip -c ${THISDIR}/garradin.1 > /usr/share/man/man1/${PACKAGE_DEBNAME}.1.gz
    rm -f ${THISDIR}/garradin.1
} || {
    echo "Fail."
    exit 1
}

true && {







>
|







75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# doc.
DOCDIR=${DEBLOCALPREFIX}/share/doc/${PACKAGE_DEBNAME}

true && {
    echo "Generating doc..."
    cp ${SRCDIR}/README ${DOCDIR}
    a2x --doctype manpage --format manpage ${THISDIR}/manpage.txt
    mkdir -p ${DEBLOCALPREFIX}/share/man/man1
    gzip -c ${THISDIR}/garradin.1 > ${DEBLOCALPREFIX}/share/man/man1/${PACKAGE_DEBNAME}.1.gz
    rm -f ${THISDIR}/garradin.1
} || {
    echo "Fail."
    exit 1
}

true && {