wok view rclone/receipt @ rev 21619

gcc83-lib-base: revert to gcc-lib-base post install
Previous post-install rules don't work for me producing error:
error: C compiler cannot create executables
on the another plain build when I previously used gcc83 & gcc83-lib-base to compile my other package
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sat May 25 14:09:45 2019 +0300 (2019-05-25)
parents c0c2dc174fdf
children 0df7c7a84904
line source
1 # SliTaz package receipt.
3 PACKAGE="rclone"
4 VERSION="1.44"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cmdline tool to sync cloud storage with local folder, and more"
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="BSD"
9 TARBALL="$PACKAGE-v${VERSION}-linux-386.zip"
10 WEB_SITE="https://rclone.org/"
11 WGET_URL="https://downloads.rclone.org/v$VERSION/$TARBALL"
13 DEPENDS="rsync"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 echo "Precompiled binary..."
19 mkdir -p $install/usr/bin
20 cp $src/rclone $install/usr/bin
21 }
23 # Rules to gen a SliTaz package suitable for Tazpkg.
24 genpkg_rules()
25 {
26 mkdir -p $fs/usr
27 cp -a $install/usr/bin $fs/usr
28 }