wok annotate libsixel/receipt @ rev 25706

BootProg/boot32.asm: add int 21h services 02h, 09h, 25h, 35h
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 26 17:36:15 2024 +0000 (3 days ago)
parents 0dd14847d144
children
rev   line source
pascal@20644 1 # SliTaz package receipt.
pascal@20644 2
pascal@20644 3 PACKAGE="libsixel"
Hans-G?nter@24829 4 VERSION="1.10.3"
pascal@20644 5 CATEGORY="graphics"
Hans-G?nter@23102 6 SHORT_DESC="A SIXEL encoder and decoder implementation derived from kmiya's sixel."
pascal@20644 7 MAINTAINER="pascal.bellard@slitaz.org"
pascal@20644 8 LICENSE="MIT"
Hans-G?nter@24829 9 WEB_SITE="https://github.com/libsixel/libsixel"
Hans-G?nter@23102 10
pascal@20644 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@20644 12 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
pascal@20644 13
Hans-G?nter@24829 14 BUILD_DEPENDS="meson"
pascal@20644 15
pascal@25600 16 # What is the latest version available today?
pascal@24055 17 current_version()
pascal@24055 18 {
pascal@24055 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \
pascal@25600 20 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
pascal@24055 21 }
pascal@24055 22
pascal@20644 23 # Rules to configure and make the package.
pascal@20644 24 compile_rules()
pascal@20644 25 {
Hans-G?nter@24829 26 meson _build \
Hans-G?nter@24829 27 --prefix=/usr &&
Hans-G?nter@24829 28 ninja -C _build &&
Hans-G?nter@24829 29 ninja -C _build install
pascal@20644 30 }
pascal@20644 31
pascal@20644 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@20644 33 genpkg_rules()
pascal@20644 34 {
Hans-G?nter@24829 35 cook_copy_folders bin
Hans-G?nter@24829 36 cook_copy_files *.so*
pascal@20644 37 }