wok annotate sxiv/receipt @ rev 23757

fusecloop/extract_compressed_fs: fix v2 convertion
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 02 17:31:45 2020 +0000 (2020-05-02)
parents 5a902d3aec25
children 5ea0ce1cecc0
rev   line source
paul@18692 1 # SliTaz package receipt.
paul@18692 2
paul@18692 3 PACKAGE="sxiv"
Hans-G?nter@23688 4 VERSION="26"
paul@18692 5 CATEGORY="graphics"
paul@18692 6 SHORT_DESC="Simple X Image Viewer."
paul@18692 7 MAINTAINER="paul@slitaz.org"
paul@18692 8 WEB_SITE="https://github.com/muennich/sxiv"
Hans-G?nter@23688 9
pascal@21234 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@21234 11 WGET_URL="$WEB_SITE/archive/v$VERSION.tar.gz"
paul@18692 12
Hans-G?nter@23688 13 DEPENDS="giflib imlib2 libexif xdg-utils"
Hans-G?nter@23688 14 BUILD_DEPENDS="bzip2 giflib-dev imlib2-dev libexif-dev xorg-dev"
paul@18692 15
paul@18692 16 # Rules to configure and make the package.
paul@18692 17 compile_rules()
paul@18692 18 {
pascal@21234 19 make &&
paul@18692 20 make PREFIX=/usr DESTDIR=$DESTDIR install
paul@18692 21 }
paul@18692 22
paul@18692 23 # Rules to gen a SliTaz package suitable for Tazpkg.
paul@18692 24 genpkg_rules()
paul@18692 25 {
paul@18692 26 mkdir -p $fs/usr/share
Hans-G?nter@23688 27
Hans-G?nter@23688 28 cp -a $install/usr/bin $fs/usr
Hans-G?nter@23688 29 cp -a $install/usr/share/sxiv $fs/usr/share
paul@18692 30 }