wok-next annotate partimage/receipt @ rev 18730
Quote root dir in post_install
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Dec 20 15:13:45 2015 +0100 (2015-12-20) |
parents | 49a446459762 |
children | 6fab3264ba87 |
rev | line source |
---|---|
erjo@582 | 1 # SliTaz package receipt. |
erjo@582 | 2 |
erjo@582 | 3 PACKAGE="partimage" |
slaxemulator@8643 | 4 VERSION="0.6.9" |
erjo@582 | 5 CATEGORY="system-tools" |
erjo@582 | 6 SHORT_DESC="Saves partitions in an image file." |
erjo@784 | 7 MAINTAINER="erjo@slitaz.org" |
pascal@15000 | 8 LICENSE="GPL2" |
erjo@582 | 9 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
erjo@582 | 10 WEB_SITE="http://www.partimage.org/Index.fr.html" |
slaxemulator@8643 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
erjo@582 | 12 |
pascal@15000 | 13 DEPENDS="newt bzip2 openssl slitaz-base-files zlib gcc-lib-base" |
pascal@15000 | 14 BUILD_DEPENDS="newt newt-dev slang-dev bzip2-dev openssl-dev zlib-dev" |
pascal@15000 | 15 |
erjo@582 | 16 # Rules to configure and make the package. |
erjo@582 | 17 compile_rules() |
slaxemulator@8643 | 18 { |
pascal@12783 | 19 sed -i 's/gzFile \*m_gzImageFile/gzFile m_gzImageFile/' src/client/imagefile.h |
pascal@12783 | 20 sed -i 's/(gzFile \*) gzdopen/gzdopen/' src/client/imagefile.cpp |
erjo@582 | 21 ./configure --prefix=/usr \ |
erjo@582 | 22 --sysconfdir=/etc \ |
erjo@582 | 23 --infodir=/usr/share/info \ |
pascal@1484 | 24 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1484 | 25 make && |
pascal@15000 | 26 make DESTDIR=$DESTDIR install |
erjo@582 | 27 } |
erjo@582 | 28 |
erjo@582 | 29 # Rules to gen a SliTaz package suitable for Tazpkg. |
erjo@582 | 30 genpkg_rules() |
erjo@582 | 31 { |
pascal@11689 | 32 mkdir -p $fs/usr $fs/etc/init.d $fs/var/lib/partimaged |
pascal@15000 | 33 cp -a $install/usr/sbin $fs/usr |
pascal@15000 | 34 cp -a $install/etc $fs/ |
erjo@582 | 35 install -g root -o root -m 0600 stuff/etc/partimaged/partimaged.* $fs/etc/partimaged |
erjo@582 | 36 install -g root -o root -m 0755 stuff/etc/init.d/partimaged $fs/etc/init.d |
erjo@582 | 37 } |
erjo@582 | 38 |
erjo@582 | 39 post_install() |
erjo@582 | 40 { |
erjo@582 | 41 echo "Processing post install commands..." |
erjo@582 | 42 echo "Adding user/group partimag..." |
pascal@18730 | 43 chroot "$1/" adduser -S -H -D partimag |
erjo@582 | 44 |
erjo@582 | 45 echo "Setting permissions for config files" |
pascal@18730 | 46 chmod 0600 "$1"/etc/partimaged/* |
pascal@18730 | 47 chroot "$1/" chown partimag.partimag "$1"/etc/partimaged/* |
erjo@582 | 48 |
erjo@582 | 49 echo " Creating image files directory" |
pascal@18730 | 50 chroot "$1/" install -g partimag -o partimag -m 0755 -d "$1/var/lib/partimaged" |
erjo@582 | 51 |
erjo@582 | 52 echo "" |
erjo@582 | 53 echo -e "\nTo starts $PACKAGE server you can run :\n" |
erjo@582 | 54 echo "/etc/init.d/partimaged start" |
erjo@582 | 55 echo -e "Or add partimaged to RUN_DAEMONS in /etc/rcS.conf\n" |
erjo@582 | 56 } |
erjo@582 | 57 |
erjo@582 | 58 post_remove() |
erjo@582 | 59 { |
pascal@18730 | 60 chroot "$1/" deluser partimag |
pascal@18730 | 61 chroot "$1/" delgroup partimag |
erjo@582 | 62 |
pascal@18730 | 63 if [ -f "$1/etc/paritimaged" ]; then |
pascal@18730 | 64 rm -rf "$1/etc/partimaged" |
erjo@582 | 65 fi |
erjo@582 | 66 } |