Files
BMLFS/build-scripts/Pygments.build
2023-12-19 16:07:30 -06:00

45 lines
1.6 KiB
Bash

#! /bin/bash
# Pygments
# Source: https://files.pythonhosted.org/packages/source/P/Pygments/Pygments-2.16.1.tar.gz
#
# $BUILD = Directory to temporarily install
# $PKGS = Directory to store built packages
#
# DEPS
# Required: Python 3
# Recommended: NONE
# Optional: NONE
#read -p "Compile?" && python3 setup.py build &&
pip3 wheel -w dist --no-build-isolation --no-deps --no-cache-dir $PWD
#sudo -S python3 setup.py install --optimize=1 --prefix=/usr --root=${BUILD} &&
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-2.16.1-$PSUFFIX &&
sudo -S rm -rf ${BUILD}/*