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