wok view vifm/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 703944c2942c
children 07e5f46bebd3
line source
1 # SliTaz package receipt.
3 PACKAGE="vifm"
4 VERSION="0.10"
5 CATEGORY="utilities"
6 SHORT_DESC="Vi File Manager."
7 MAINTAINER="paul@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://vifm.sourceforge.net/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 DEPENDS="file libmagic ncurses vim xorg-libX11"
15 BUILD_DEPENDS="file groff libmagic-dev ncurses-dev util-linux-whereis \
16 vim xorg-libX11-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --prefix=/usr \
23 --without-gtk \
24 --with-libmagic \
25 --datadir=/usr/share \
26 $CONFIGURE_ARGS &&
27 make &&
28 make -j 1 DESTDIR=$DESTDIR install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/share $fs/usr
39 # rm stuff
40 rm -rf $fs/usr/share/man
41 }