wok view libcroco/receipt @ rev 23821

syslinux: merge init.exe & taziso (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 28 09:34:09 2020 +0000 (2020-05-28)
parents fc77c2093acf
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="libcroco"
4 VERSION="0.6.13"
5 CATEGORY="system-tools"
6 SHORT_DESC="Cascading Style Sheet (CSS) parsing and manipulation toolkit."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://developer.gnome.org/libcroco/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 DEPENDS="glib libxml2 zlib"
15 BUILD_DEPENDS="glib-dev libxml2-dev zlib-dev"
17 HOST_ARCH="i486 arm"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure $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
31 mkdir -p $fs/usr/bin
33 cp $install/usr/bin/csslint* $fs/usr/bin
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }