wok-next annotate xarchiver/receipt @ rev 21590

updated dialog (1.3-20181107 -> 1.3.20200327)
author Hans-G?nter Theisgen
date Wed Jun 24 07:00:06 2020 +0100 (2020-06-24)
parents d5aab818505e
children
rev   line source
al@19896 1 # SliTaz package receipt v2.
erjo@4156 2
erjo@4156 3 PACKAGE="xarchiver"
al@21127 4 VERSION="0.5.4.14"
erjo@4156 5 CATEGORY="x-window"
al@16771 6 SHORT_DESC="A GTK+ lightweight archive manager"
al@21020 7 MAINTAINER="devel@slitaz.org"
pascal@15579 8 LICENSE="GPL2"
al@20905 9 #WEB_SITE="https://wiki.lxde.org/en/Xarchiver"
al@20905 10 WEB_SITE="https://github.com/ib/xarchiver"
al@19896 11
al@20905 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@20905 13 WGET_URL="https://github.com/ib/xarchiver/archive/$VERSION.tar.gz"
al@21127 14 TARBALL_SHA1="db763b3eaf926ebfc78ba0f647902d0d3764a813"
erjo@4156 15
al@21127 16 BUILD_DEPENDS="gtk2-dev intltool libxslt docbook-xsl"
al@21127 17 DEPENDS="gdk-pixbuf glib gtk2"
al@21127 18
al@21127 19 # binutils for ar; busybox also contains gzip & cpio; rar is get-rar; gtar is absent
al@21127 20 SUGGESTED="arj binutils bzip2 cpio gzip lha lzma lzop p7zip-full rar xz zip"
al@21127 21
al@21127 22 COPY="@std index.html xarchiver-add.png xarchiver-extract.png" # 24x24 skipped by default
al@20905 23 COOKOPTS="skip-log-errors"
pascal@15579 24
al@19896 25 compile_rules() {
al@20604 26 ./configure $CONFIGURE_ARGS &&
al@20604 27 fix libtool &&
al@20604 28 make &&
al@20905 29 make install || return 1
al@19896 30
al@21127 31 docdir="$install/usr/share/doc/$PACKAGE-$VERSION"
al@21127 32 mv $docdir/index.html $docdir/index.orig.html
al@20905 33 install -Dm644 $stuff/xarchiver.cgi $install/var/www/cgi-bin/xarchiver.cgi
al@21127 34 install -Dm644 $stuff/index.html $docdir/index.html
al@19896 35
al@21127 36 # move icons from pixmaps to default hicolor theme
al@21127 37 install -Dm644 $install/usr/share/pixmaps/xarchiver/xarchiver-add.png \
al@21127 38 $install/usr/share/icons/hicolor/24x24/actions/xarchiver-add.png
al@21127 39 install -Dm644 $install/usr/share/pixmaps/xarchiver/xarchiver-extract.png \
al@21127 40 $install/usr/share/icons/hicolor/24x24/actions/xarchiver-extract.png
al@21127 41 rm -r $install/usr/share/pixmaps/
erjo@4156 42 }