#! /bin/bash # Pygments # Source: https://files.pythonhosted.org/packages/source/P/Pygments/pygments-2.19.2.tar.gz # # $BUILD = Directory to temporarily install # $PKGS = Directory to store built packages # # DEPS # Required: python3 hatchling # Recommended: NONE # Optional: NONE export PVER="2.19.2" read -p "Compile?" && \ pip3 wheel -w dist --no-build-isolation --no-deps --no-cache-dir $PWD sudo -S pip3 install --no-index --find-links=dist --no-cache-dir --no-user Pygments --root=${BUILD} cd $BUILD && sudo -S mkdir -v ${BUILD}/install && cat > /tmp/slack-desc << "EOF" # HOW TO EDIT THIS FILE: # The "handy ruler" below makes it easier to edit a package description. Line # up the first '|' above the ':' following the base package name, and the '|' # on the right side marks the last column you can put a character in. You must # make exactly 11 lines for the formatting to be correct. It's also # customary to leave one space after the ':' except on otherwise blank lines. |-----handy-ruler------------------------------------------------------| Pygments: Pygments (syntax highlighting package written in Python) Pygments: Pygments: It is a generic syntax highlighter for general use in all kinds of Pygments: software such as forum systems, wikis or other applications that need Pygments: to prettify source code. A wide range of common languages and markup Pygments: formats is supported. Pygments: Pygments: Pygments: Pygments: Pygments: EOF sudo -S mv -v /tmp/slack-desc install/ && sudo -S makepkg -l y -c n $PKGS/Pygments-$PVER-$PSUFFIX && sudo -S rm -rf ${BUILD}/*