wok view xorg-libXp/receipt @ rev 20423

Update some web_site to https
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 09 12:16:16 2018 +0200 (2018-08-09)
parents 9412b690444b
children 7dac4105d4b3
line source
1 # SliTaz package receipt.
3 PACKAGE="xorg-libXp"
4 SOURCE="libXp"
5 VERSION="1.0.2"
6 CATEGORY="development"
7 SHORT_DESC="Provides public APIs to allow client applications to render to non-display devices."
8 MAINTAINER="rcx@zoominternet.net"
9 LICENSE="MIT"
10 SOURCE="libXp"
11 TARBALL="$SOURCE-$VERSION.tar.bz2"
12 WEB_SITE="https://www.x.org/"
13 WGET_URL="$XORG_MIRROR/lib/$TARBALL"
14 HOST_ARCH="i486 arm"
16 DEPENDS="xorg-libXext"
17 BUILD_DEPENDS="xorg-libXext-dev xorg-printproto"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 cd $src
23 ./configure \
24 $CONFIGURE_ARGS &&
25 make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/lib
32 cp -a $install/usr/lib/*.so* $fs/usr/lib
33 }