wok diff mindi/receipt @ rev 13706
get-OpenOffice3: add options --quick
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Mon Dec 17 15:14:58 2012 +0100 (2012-12-17) |
parents | |
children | 380ffe05937a |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/mindi/receipt Mon Dec 17 15:14:58 2012 +0100 1.3 @@ -0,0 +1,37 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="mindi" 1.7 +VERSION="2.1.3" 1.8 +CATEGORY="system-tools" 1.9 +SHORT_DESC="GPL disaster recovery solution." 1.10 +MAINTAINER="erjo@slitaz.org" 1.11 +WEB_SITE="http://www.mondorescue.org/" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz" 1.13 +WGET_URL="ftp://ftp.mondorescue.org/src/$TARBALL" 1.14 + 1.15 +DEPENDS="syslinux syslinux-extra" 1.16 +BUILD_DEPENDS="" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + PREFIX=$install/usr \ 1.22 + CONFDIR=$install/etc \ 1.23 + CACHEDIR=$install/var/cache/mindi ./install.sh 1.24 +} 1.25 + 1.26 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.27 +genpkg_rules() 1.28 +{ 1.29 + mkdir -p $fs/usr 1.30 + 1.31 + cp -a $install/usr/sbin $fs/usr 1.32 + cp -a $install/usr/lib $fs/usr 1.33 + cp -a $install/etc $fs/ 1.34 + cp -a $install/var $fs/ 1.35 + 1.36 + #Fix path 1.37 + sed -i -e "s!$install/!/!" $fs/etc/mindi/perl-scripts 1.38 + sed -i -e "s!$install/!/!" $fs/usr/sbin/mindi 1.39 + sed -i -e "s!/usr/lib/isolinux.bin!/boot/isolinux/isolinux.bin!" $fs/usr/sbin/mindi 1.40 +}