blob: 97c3568b00a2ecaaa35f2745c8127a21e2cbaaf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#/bin/sh
texscyther \
--output-plist $TMP/$(basename $0) \
--tlpdb $CWD/texlive.tlpdb \
--skip-missing-archpkgs \
--nodirs \
--subset \
--include \
scheme-full:doc
cat $TMP/$(basename $0) | \
grep "texmf-dist/" | \
grep -v "win32" | \
grep -v "context/stubs/mswin/" | \
grep -v "win32" | \
grep -v "MinGW" | \
sort -u \
> $PACKLISTS/$(basename $0)-packlist
|