wok view dietlibc/receipt @ rev 15367

Add wimlib
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 12 12:04:33 2013 +0000 (2013-10-12)
parents f7aac850c3cd
children 5e6810e4a860
line source
1 # SliTaz package receipt.
3 PACKAGE="dietlibc"
4 VERSION="0.33"
5 CATEGORY="development"
6 SHORT_DESC="A libc optimized ofr small size."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.fefe.de/dietlibc/"
11 WGET_URL="http://www.kernel.org/pub/linux/libs/$PACKAGE/$TARBALL"
13 # Rules to configure and make the package.
14 compile_rules()
15 {
16 cd $src
17 sed -i 's|.*/nice.S.*|// &|' i386/dyn_syscalls.S
18 make prefix=/usr/lib/diet &&
19 #make dyn prefix=/usr/lib/diet &&
20 make prefix=/usr/lib/diet DESTDIR=$DESTDIR install 2> /dev/null
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr/bin $fs/usr/include
27 cp -a $install/* $fs
28 ln -s ../lib/diet/include $fs/usr/include/diet
29 ln -s /usr/lib/diet/bin/diet $fs/usr/bin
30 ln -s /usr/lib/diet/bin/diet-dyn $fs/usr/bin
31 ln -s /usr/lib/diet/bin/elftrunc $fs/usr/bin
32 }