mirror of
git://slackware.nl/current.git
synced 2024-12-27 09:59:16 +01:00
1ca976055a
l/protobuf-29.0-x86_64-1.txz: Upgraded. Shared library .so-version bump. l/qt6-6.8.1_20241122_41d5d04f-x86_64-1.txz: Upgraded. Compiled against protobuf-29.0. n/mosh-1.4.0-x86_64-5.txz: Rebuilt. Recompiled against protobuf-29.0. x/noto-cjk-fonts-ttf-2.004-noarch-1.txz: Upgraded. Let's not be stingy about packaging the CJK fonts. :-) Drop the fontconfig file since Arch also did that.
73 lines
2.5 KiB
Bash
Executable file
73 lines
2.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Copyright 2015, 2018, 2020 Eric Hameleers, Eindhoven, NL
|
|
# Copyright 2015, 2018, 2020, 2024 Patrick J. Volkerding, Sebeka, MN USA
|
|
# All rights reserved.
|
|
#
|
|
# Redistribution and use of this script, with or without modification, is
|
|
# permitted provided that the following conditions are met:
|
|
#
|
|
# 1. Redistributions of this script must retain the above copyright
|
|
# notice, this list of conditions and the following disclaimer.
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
|
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
|
|
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
|
|
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
|
|
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
|
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd)
|
|
|
|
PKGNAM=noto-cjk-fonts-ttf
|
|
VERSION=2.004
|
|
BUILD=${BUILD:-1}
|
|
ARCH=noarch
|
|
|
|
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
# the name of the created package would be, and then exit. This information
|
|
# could be useful to other scripts.
|
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
|
echo "$PKGNAM-$VERSION-$ARCH-$BUILD.txz"
|
|
exit 0
|
|
fi
|
|
|
|
TMP=${TMP:-/tmp}
|
|
PKG=$TMP/package-$PKGNAM
|
|
|
|
rm -rf $PKG
|
|
mkdir -p $TMP $PKG
|
|
|
|
# Install the fonts/docs:
|
|
( cd $PKG
|
|
ls -t $CWD/*.zip | tac | while read archive ; do
|
|
unzip -o $archive
|
|
done
|
|
mv OTC/* .
|
|
rmdir OTC
|
|
mkdir -p usr/share/fonts/TTF
|
|
mv *.ttc usr/share/fonts/TTF
|
|
mkdir -p usr/doc/${PKGNAM}-${VERSION}
|
|
mv LICENSE usr/doc/${PKGNAM}-${VERSION}
|
|
chown -R root:root .
|
|
find . -type d -exec chmod 755 "{}" \;
|
|
find . -type f -exec chmod 644 "{}" \;
|
|
)
|
|
|
|
# Arch dropped shipping this so we will too.
|
|
# Add a font configuration file (taken from Arch repository):
|
|
#mkdir -p $PKG/usr/share/fontconfig/conf.avail
|
|
#cp -a $CWD/70-noto-cjk.conf $PKG/usr/share/fontconfig/conf.avail
|
|
#chown root:root $PKG/usr/share/fontconfig/conf.avail/70-noto-cjk.conf
|
|
#chmod 644 $PKG/usr/share/fontconfig/conf.avail/70-noto-cjk.conf
|
|
|
|
mkdir -p $PKG/install
|
|
zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
cd $PKG
|
|
/sbin/makepkg -l y -c n $TMP/$PKGNAM-$VERSION-$ARCH-$BUILD.txz
|