wok-undigest annotate glibc-dev/receipt @ rev 1233

try audacity again
author Hans-G?nter Theisgen
date Sat Aug 06 17:09:06 2022 +0100 (23 months ago)
parents
children
rev   line source
psychomaniak@1128 1 # SliTaz package receipt.
psychomaniak@1128 2
psychomaniak@1128 3 PACKAGE="glibc-dev"
psychomaniak@1128 4 VERSION="2.14.1"
psychomaniak@1128 5 CATEGORY="development"
psychomaniak@1128 6 SHORT_DESC="The GNU C libraries devel files (Part of SliTaz toolchain)."
psychomaniak@1128 7 MAINTAINER="pankso@slitaz.org"
psychomaniak@1128 8 LICENSE="GPL2"
psychomaniak@1128 9 WANTED="glibc"
psychomaniak@1128 10 WEB_SITE="http://www.gnu.org/software/libc/"
psychomaniak@1128 11
psychomaniak@1128 12 DEPENDS="glibc-base"
psychomaniak@1128 13
psychomaniak@1128 14 # Rules to gen a SliTaz package suitable for Tazpkg.
psychomaniak@1128 15 #
psychomaniak@1128 16 # This package is part of the toolchain. We use list to mkdir and cp files.
psychomaniak@1128 17 #
psychomaniak@1128 18 genpkg_rules()
psychomaniak@1128 19 {
psychomaniak@1128 20 # Mass copy and then remove all files specified in stuff/base-files.list.
psychomaniak@1128 21 # We get the files from glibc-base. Locale files are in: glibc-locale.
psychomaniak@1128 22 cp -a $install/* $fs
psychomaniak@1128 23
psychomaniak@1128 24 # Rm base files.
psychomaniak@1128 25 echo -n "Removing all base files..."
psychomaniak@1128 26 for file in `cat $WOK/glibc-base/taz/glibc-base-$VERSION/files.list`
psychomaniak@1128 27 do
psychomaniak@1128 28 rm -f ${fs}$file
psychomaniak@1128 29 done
psychomaniak@1128 30 rm -rf $fs/etc
psychomaniak@1128 31 rm -rf $fs/usr/share
psychomaniak@1128 32 status
psychomaniak@1128 33
psychomaniak@1128 34 # Rm locale.
psychomaniak@1128 35 echo -n "Removing all locale files..."
psychomaniak@1128 36 for file in `cat $WOK/glibc-locale/taz/glibc-locale-$VERSION/files.list`
psychomaniak@1128 37 do
psychomaniak@1128 38 rm -f ${fs}$file
psychomaniak@1128 39 done
psychomaniak@1128 40 rm -rf $fs/usr/lib/gconv
psychomaniak@1128 41 status
psychomaniak@1128 42 }