wok-tiny diff libc++/receipt @ rev 187

Add bootlife (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 04 18:58:39 2024 +0000 (4 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libc++/receipt	Sun Feb 04 18:58:39 2024 +0000
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libc++"
     1.7 +VERSION="0.9.31"
     1.8 +CATEGORY="base-system"
     1.9 +GROUP="library"
    1.10 +SHORT_DESC="C++ runtime library"
    1.11 +MAINTAINER="pascal.bellard@slitaz.org"
    1.12 +LICENSE="LGPL"
    1.13 +[ -n "$TARGET" ] || TARGET="i486"
    1.14 +DEPENDS="base-tiny"
    1.15 +BUILD_DEPENDS="uclibc-cross-compiler-$TARGET"
    1.16 +WEB_SITE="http://tiny.slitaz.org/"
    1.17 +
    1.18 +# Rules to configure and make the package.
    1.19 +compile_rules()
    1.20 +{
    1.21 +	mkdir -p $DESTDIR/lib
    1.22 +	cp -a /usr/share/uclibc-cross-compiler-$TARGET/lib/libuClibc++**.so* $DESTDIR/lib
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	cp -a $install/lib $fs/
    1.29 +	chown 0.0 $fs/lib/*
    1.30 +}