wok view glibc-dev/receipt @ rev 9

Toolchain : binutils, glibc, gcc, make
author Christophe Lincoln <pankso@slitaz.org>
date Fri Dec 14 21:14:40 2007 +0100 (2007-12-14)
parents
children 3e085751bf3a
line source
1 # SliTaz package receipt.
3 PACKAGE="glibc-dev"
4 VERSION="2.3.6"
5 CATEGORY="extra"
6 SHORT_DESC="The GNU C libraries devel files (Part of SliTaz toolchain)."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="glibc-base"
9 WANTED="glibc"
10 WEB_SITE="http://www.gnu.org/software/libc/"
11 SOURCES="glibc"
13 # Rules to gen a SliTaz package suitable for Tazpkg.
14 #
15 # This package is part of the toolchain. We use list to mkdir and cp files.
16 #
17 genpkg_rules()
18 {
19 # Copy all and then remove all files specified in stuff/base-files.list.
20 # We get the files from glibc-base package.
21 cp -a $_pkg/* $fs
22 echo -n "Removing all base files..."
23 for file in `cat stuff/base-files.list`
24 do
25 rm -f ${fs}$file
26 done
27 rm -rf $fs/etc
28 rm -rf $fs/usr/share/info
29 status
30 }