wok-tiny view libgcc_s/receipt @ rev 168

memtest: 386 support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Apr 30 16:35:54 2021 +0000 (2021-04-30)
parents bb00d1e3b0f7
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libgcc_s"
4 VERSION="4.2.1"
5 CATEGORY="base-system"
6 GROUP="library"
7 SHORT_DESC="GCC 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 }