wok diff libsixel/receipt @ rev 25076
Up marlin (886)
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Tue Jun 14 08:17:07 2022 +0000 (2022-06-14) |
parents | 5ea0ce1cecc0 |
children | 7364ffdaaa60 |
line diff
1.1 --- a/libsixel/receipt Tue Jun 08 08:46:05 2021 +0000 1.2 +++ b/libsixel/receipt Tue Jun 14 08:17:07 2022 +0000 1.3 @@ -1,17 +1,17 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="libsixel" 1.7 -VERSION="1.8.6" 1.8 +VERSION="1.10.3" 1.9 CATEGORY="graphics" 1.10 SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel." 1.11 MAINTAINER="pascal.bellard@slitaz.org" 1.12 LICENSE="MIT" 1.13 -WEB_SITE="https://github.com/saitoha/libsixel" 1.14 +WEB_SITE="https://github.com/libsixel/libsixel" 1.15 1.16 TARBALL="$PACKAGE-$VERSION.tar.gz" 1.17 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz" 1.18 1.19 -BUILD_DEPENDS="python" 1.20 +BUILD_DEPENDS="meson" 1.21 1.22 current_version() 1.23 { 1.24 @@ -22,19 +22,15 @@ 1.25 # Rules to configure and make the package. 1.26 compile_rules() 1.27 { 1.28 - ./configure \ 1.29 - --prefix=/usr \ 1.30 - --mandir=/usr/share/man \ 1.31 - $CONFIGURE_ARGS && 1.32 - make && 1.33 - make DESTDIR=$DESTDIR install 1.34 + meson _build \ 1.35 + --prefix=/usr && 1.36 + ninja -C _build && 1.37 + ninja -C _build install 1.38 } 1.39 1.40 # Rules to gen a SliTaz package suitable for Tazpkg. 1.41 genpkg_rules() 1.42 { 1.43 - mkdir -p $fs/usr/lib 1.44 - 1.45 - cp -a $install/usr/bin $fs/usr 1.46 - cp -a $install/usr/lib/*.so.* $fs/usr/lib 1.47 + cook_copy_folders bin 1.48 + cook_copy_files *.so* 1.49 }