wok view libvpx/receipt @ rev 22042

gcc83-lib-base: do NOT provide gcc-lib-base
Currently BOTH gcc-lib-base and gcc83-lib-base are installed on my SliTaz system. So, with the current (and longstanding) tazpkg limitations I can't update just gcc-lib-base: tazpkg always updates gcc83-lib-base for me instead. Now I can't run Firefox, Vivaldi, Chrome, etc. I think because of gcc-lib-base, but I not sure 1bsolutely.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Tue Oct 22 12:55:54 2019 +0300 (2019-10-22)
parents c68322a2f2f3
children af9d026c8a96
line source
1 # SliTaz package receipt.
3 PACKAGE="libvpx"
4 VERSION="1.8.0"
5 CATEGORY="multimedia"
6 SHORT_DESC="The VP8 Codec SDK."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="BSD"
9 WEB_SITE="https://www.webmproject.org/"
11 TARBALL="$PACKAGE-v$VERSION.tar.gz"
12 WGET_URL="https://github.com/webmproject/$PACKAGE/archive/v$VERSION.tar.gz"
14 DEPENDS="glibc-base"
15 BUILD_DEPENDS="coreutils-file-format diffutils yasm"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --enable-vp8 \
22 --enable-runtime-cpu-detect \
23 --enable-postproc \
24 --enable-shared \
25 --enable-pic \
26 --disable-install-docs \
27 --disable-install-srcs &&
28 make -j 1 &&
29 make DIST_DIR=$DESTDIR/usr install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }