mirror of
git://slackware.nl/current.git
synced 2024-12-28 09:59:53 +01:00
0eb4f651da
a/pkgtools-15.1-noarch-10.txz: Rebuilt. setup.services: typo/syntax error fix. Thanks to gramaxo and pghvlaans. a/xz-5.6.0-x86_64-1.txz: Upgraded. ap/man-pages-6.06-noarch-2.txz: Rebuilt. Restored the previously included posix pages, and added the posix "sh" page since it's more correct than getting the ksh page for "sh". Thanks to pghvlaans. d/git-2.44.0-x86_64-1.txz: Upgraded. kde/kdnssd-5.115.0-x86_64-2.txz: Rebuilt. Recompiled to add Zeroconf support. (This one fooled me because it doesn't actually link to any avahi libraries.) Thanks to audriusk. kde/kid3-3.9.5-x86_64-1.txz: Upgraded. l/libpng-1.6.43-x86_64-1.txz: Upgraded. l/libunistring-1.2-x86_64-1.txz: Upgraded. n/libksba-1.6.6-x86_64-1.txz: Upgraded. n/npth-1.7-x86_64-1.txz: Upgraded. t/texlive-2023.230322-x86_64-7.txz: Rebuilt. Use the bundled zlib to make the bundled lua happy. Thanks to sombragris.
17 lines
888 B
Bash
Executable file
17 lines
888 B
Bash
Executable file
#!/bin/sh
|
|
# Repacks the texlive tarball to remove unused sources.
|
|
|
|
VERSION=${VERSION:-$(echo texlive-*source.tar.?z* | rev | cut -f 2 -d - | cut -f 1 -d - | rev)}
|
|
|
|
tar xf texlive-${VERSION}-source.tar.xz || exit 1
|
|
mv texlive-${VERSION}-source.tar.xz texlive-${VERSION}-source.tar.xz.orig
|
|
( cd texlive-${VERSION}-source/libs && rm -rf cairo freetype2 gd gmp graphite2 harfbuzz mpfr icu libpng pixman )
|
|
( cd texlive-${VERSION}-source/utils && rm -rf asymptote )
|
|
( cd texlive-${VERSION}-source/utils && rm -rf texdoctk )
|
|
( cd texlive-${VERSION}-source/utils && rm -rf m-tx )
|
|
( cd texlive-${VERSION}-source/texk/texlive && rm -rf w*_wrapper )
|
|
tar cf texlive-${VERSION}-source.tar texlive-${VERSION}-source
|
|
rm -r texlive-${VERSION}-source
|
|
xz texlive-${VERSION}-source.tar
|
|
touch -r texlive-${VERSION}-source.tar.xz.orig texlive-${VERSION}-source.tar.xz
|
|
rm texlive-${VERSION}-source.tar.xz.orig
|