wok view ovz-web-panel/receipt @ rev 15603

Use install instead of _pkg
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 06 10:39:07 2013 +0000 (2013-12-06)
parents d1768332cee0
children 8873e661671a
line source
1 # SliTaz package receipt.
3 PACKAGE="ovz-web-panel"
4 VERSION="1.7"
5 CATEGORY="network"
6 SHORT_DESC="GUI web-based frontend for OpenVZ"
7 MAINTAINER="erjo@slitaz.org"
8 DEPENDS="ruby-enterprise sqlite3-ruby"
9 TARBALL="${PACKAGE}-${VERSION}.tgz"
10 WEB_SITE="http://code.google.com/p/ovz-web-panel/"
11 WGET_URL="http://ovz-web-panel.googlecode.com/files/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 # Apply patches
19 while read patch_file; do
20 if [ -f done.$patch_file ]; then
21 echo "Skipping $patch_file"
22 continue
23 fi
24 echo "Apply $patch_file"
25 patch -p1 < $stuff/$patch_file || return 1
26 touch done.$patch_file
27 done <<EOT
28 owp-${VERSION}.u
29 EOT
30 mkdir $DESTDIR
31 mv * $DESTDIR 2> /dev/null || true
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/share \
38 $fs/etc
40 cp -a $install $fs/usr/share/$PACKAGE
41 cp -a $fs/usr/share/$PACKAGE/config/owp.conf.sample $fs/etc/owp.conf
42 cp -a $fs/usr/share//$PACKAGE/utils/hw-daemon/hw-daemon.ini.sample $fs/usr/share/$PACKAGE/utils/hw-daemon/hw-daemon.ini
44 # Set secret key
45 sed -i 's/secret/2918b7aafc1f5f753ee232a7e7f78175/' \
46 $fs/usr/share/$PACKAGE/utils/hw-daemon/hw-daemon.ini
48 # Set program homedir
49 sed -i 's!/opt!/usr/share!' $fs/etc/owp.conf
51 # Fix perms
52 chmod 755 $fs/usr/share/$PACKAGE/script/owp
54 # Cleaning.
55 rm -f $fs/usr/share/$PACKAGE/done.*.u
56 }
58 post_install()
59 {
60 echo "Processing post-install commands..."
61 chroot "$1/" ln -s /usr/share/$PACKAGE/script/owp /etc/init.d/owp
62 }
64 clean_wok()
65 {
66 [ -d $PACKAGE ] && rm -rf $PACKAGE
67 }