wok view libtirpc/receipt @ rev 23119

updated libvpx and libvpx-dev (1.8.0 -> 1.8.2)
author Hans-G?nter Theisgen
date Fri Mar 13 07:12:08 2020 +0100 (2020-03-13)
parents ff97431224ca
children 65d7d867e0c1
line source
1 # SliTaz package receipt.
3 PACKAGE="libtirpc"
4 VERSION="1.2.5"
5 CATEGORY="system-tools"
6 SHORT_DESC="Transport-Independent RPC library."
7 MAINTAINER="pascal.bellard@slitaz.org"
8 LICENSE="BSD"
9 WEB_SITE="https://sourceforge.net/projects/libtirpc/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 HOST_ARCH="i486 arm"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 sysconfdir=/etc \
21 --disable-gssapi \
22 $CONFIGURE_ARGS &&
23 make -j 1 &&
24 make install
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 cp -a $install/etc $fs
34 }