wok-tiny view libm/receipt @ rev 128

busybox/mdev: restore /sys layout
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Apr 13 19:09:32 2017 +0200 (2017-04-13)
parents bb00d1e3b0f7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libm"
4 VERSION="0.9.31"
5 CATEGORY="base-system"
6 GROUP="library"
7 SHORT_DESC="Math runtime library"
8 MAINTAINER="pascal.bellard@slitaz.org"
9 LICENSE="LGPL"
10 [ -n "$TARGET" ] || TARGET="i486"
11 DEPENDS="base-tiny"
12 BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
13 WEB_SITE="http://tiny.slitaz.org/"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 mkdir -p $DESTDIR/lib
19 cp -a /usr/share/uclibc-cross-compiler-$TARGET/lib/$PACKAGE*.so* $DESTDIR/lib
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 cp -a $install/lib $fs/
26 chown 0.0 $fs/lib/*
27 }