wok-current view lcms2/receipt @ rev 25786
Bump gvfs to fix issue with open files on android device, patch udev to fix mtp issue on pcmanfm
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Jul 29 18:05:13 2025 +0000 (2 months ago) |
parents | cbdedb979b58 |
children |
line source
1 # SliTaz package receipt.
3 PACKAGE="lcms2"
4 VERSION="2.13.1"
5 CATEGORY="graphics"
6 SHORT_DESC="Open source color management engine (library)."
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="MIT"
9 WEB_SITE="https://www.littlecms.com/"
10 REPOLOGY="lcms"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/mm2/Little-CMS/archive/lcms$VERSION.tar.gz"
15 BUILD_DEPENDS="jpeg-dev tiff-dev zlib-dev"
16 SPLIT="lcms2-apps"
18 HOST_ARCH="i486 x86_64"
20 current_version()
21 {
22 wget -O - https://sourceforge.net/projects/lcms/files/lcms/ 2>/dev/null | \
23 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
24 sed "/$PACKAGE-/!d;/tar/!d;s|.*$PACKAGE-\\(.*\\).tar.*\".*|\\1|;q"
25 }
27 # Rules to configure and make the package.
28 compile_rules()
29 {
30 ./configure $CONFIGURE_ARGS &&
31 make &&
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cook_copy_files *.so*
39 }