Lines 32-61
Link Here
|
32 |
|
32 |
|
33 |
# First do the binaries |
33 |
# First do the binaries |
34 |
exeinto ${INSTALLDIR}/bin |
34 |
exeinto ${INSTALLDIR}/bin |
35 |
doexe ${S}/bin/stuff |
35 |
doexe bin/stuff |
36 |
doexe ${S}/bin/unstuff |
36 |
doexe bin/unstuff |
37 |
|
37 |
|
38 |
# Now the registration binary |
38 |
# Now the registration binary |
39 |
exeinto ${INSTALLDIR}/extra |
39 |
exeinto ${INSTALLDIR}/extra |
40 |
doexe ${S}/bin/register |
40 |
doexe bin/register |
41 |
|
41 |
|
42 |
# Now the documentation |
42 |
# Now the documentation |
43 |
docinto stuff |
43 |
docinto stuff |
44 |
dodoc ${S}/doc/stuff/LICENSE |
44 |
dodoc doc/stuff/README |
45 |
dodoc ${S}/doc/stuff/README |
45 |
dohtml doc/stuff/stuff.html |
46 |
dodoc ${S}/doc/stuff/INSTALL |
|
|
47 |
dohtml ${S}/doc/stuff/stuff.html |
48 |
docinto unstuff |
46 |
docinto unstuff |
49 |
dodoc ${S}/doc/unstuff/LICENSE |
47 |
dodoc doc/unstuff/README |
50 |
dodoc ${S}/doc/unstuff/README |
48 |
dohtml doc/unstuff/unstuff.html |
51 |
dodoc ${S}/doc/unstuff/INSTALL |
|
|
52 |
dohtml ${S}/doc/unstuff/unstuff.html |
53 |
|
49 |
|
54 |
# And now the man pages |
50 |
# And now the man pages |
55 |
doman ${S}/man/man1/* |
51 |
doman man/man1/* |
56 |
|
52 |
|
57 |
# Also add the executables to the path |
53 |
# Also add the executables to the path |
58 |
dodir etc/env.d |
54 |
dodir /etc/env.d |
59 |
echo -e "PATH=${INSTALLDIR}/bin\nROOTPATH=${INSTALLDIR}/bin" > \ |
55 |
echo -e "PATH=${INSTALLDIR}/bin\nROOTPATH=${INSTALLDIR}/bin" > \ |
60 |
${D}/etc/env.d/10stuffit |
56 |
${D}/etc/env.d/10stuffit |
61 |
|
57 |
|