wok-6.x annotate xarchive/receipt @ rev 4869
Add: xfmpc
author | Eric Joseph-Alexandre <erjo@slitaz.org> |
---|---|
date | Thu Feb 04 22:43:13 2010 +0100 (2010-02-04) |
parents | c50152520c0a |
children | abac6afe28b6 |
rev | line source |
---|---|
erjo@484 | 1 # SliTaz package receipt. |
erjo@484 | 2 |
erjo@484 | 3 PACKAGE="xarchive" |
erjo@484 | 4 VERSION="0.2.8-6" |
pascal@741 | 5 CATEGORY="x-window" |
erjo@484 | 6 SHORT_DESC="A GTK+ front-end for command line archiving tools." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
erjo@484 | 8 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@2528 | 9 DEPENDS="gtk+ xorg-libXdamage" |
pascal@1514 | 10 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev" |
pascal@4416 | 11 SUGGESTED="zip rar unace arj lha p7zip lzop linux-squashfs cromfs" |
erjo@484 | 12 WEB_SITE="http://xarchive.sourceforge.net/" |
pascal@688 | 13 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
erjo@484 | 14 |
erjo@484 | 15 # Rules to configure and make the package.ls sr |
erjo@484 | 16 compile_rules() |
erjo@484 | 17 { |
erjo@484 | 18 cd $src |
erjo@484 | 19 # patch tar-wrap for busybox tar option |
pascal@1462 | 20 [ -f done.slitaz-xarchive-wrappers-0.2.8-6.patch ] || \ |
erjo@484 | 21 patch -p1 -i ../stuff/slitaz-xarchive-wrappers-0.2.8-6.patch |
pascal@1462 | 22 touch done.slitaz-xarchive-wrappers-0.2.8-6.patch |
erjo@484 | 23 |
erjo@484 | 24 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@1462 | 25 --mandir=/usr/share/man $CONFIGURE_ARGS && |
erjo@484 | 26 |
pascal@1462 | 27 make && |
erjo@484 | 28 make DESTDIR=$PWD/_pkg install |
erjo@484 | 29 } |
erjo@484 | 30 |
erjo@484 | 31 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@484 | 32 genpkg_rules() |
erjo@484 | 33 { |
erjo@484 | 34 mkdir -p $fs/usr/lib/xarchive/wrappers |
erjo@484 | 35 cp -a $_pkg/usr/bin $fs/usr |
erjo@484 | 36 sed -i 's|#!\s*/bin/bash|#!/bin/sh|' $_pkg/usr/lib/xarchive/wrappers/* |
pascal@688 | 37 cp stuff/slitaz-wrap.sh $fs/usr/lib/xarchive/wrappers |
erjo@484 | 38 strip -s $fs/usr/bin/* |
erjo@484 | 39 } |
erjo@484 | 40 |