wok-next annotate zerobin/receipt @ rev 20458

Unlock x86_64 architecture
author Aleksej Bobylev <al.bobylev@gmail.com>
date Fri Mar 02 12:12:14 2018 +0200 (2018-03-02)
parents 139df21c10dd
children da9e80c5d4bb
rev   line source
pascal@12906 1 # SliTaz package receipt.
pascal@12906 2
pascal@12906 3 PACKAGE="zerobin"
pascal@18735 4 GITHASH="8cae64d6eab99fb0d31868df77846285c0958ed0" # 6 feb 2014
pascal@18735 5 VERSION="${GITHASH:0:7}"
pascal@12906 6 CATEGORY="network"
pascal@12906 7 SHORT_DESC="Online pastebin where the server has zero knowledge of pasted data."
pascal@12906 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15185 9 LICENSE="zlib/libpng"
pascal@18735 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@12906 11 WEB_SITE="http://sebsauvage.net/wiki/doku.php?id=php:zerobin"
pascal@18735 12 WGET_URL="https://github.com/sebsauvage/ZeroBin/archive/$VERSION.tar.gz"
pascal@12906 13
pascal@12906 14 DEPENDS="php"
pascal@12906 15 SUGGESTED="php-gd"
pascal@12906 16
pascal@12906 17 # Rules to configure and make the package.
pascal@12906 18 compile_rules()
pascal@12906 19 {
pascal@12906 20 patch -p0 < $stuff/zerobin.u
pascal@12906 21 }
pascal@12906 22
pascal@12906 23 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@12906 24 genpkg_rules()
pascal@12906 25 {
pascal@12906 26 mkdir -p $fs/usr/share/zerobin
pascal@13153 27 mkdir -p $fs/var/lib/zerobin/data $fs/var/lib/zerobin/tmp
pascal@12906 28 cp -a $src/* $fs/usr/share/zerobin
pascal@13153 29 cp $stuff/purge.sh $fs/var/lib/zerobin/data
pascal@13153 30 ln -s /var/lib/zerobin/data $fs/usr/share/zerobin/data
pascal@13153 31 ln -s /var/lib/zerobin/tmp $fs/usr/share/zerobin/tmp
pascal@13153 32 chown -R www.www $fs/usr/share/zerobin $fs/var/lib/zerobin/*
pascal@12906 33 }
pascal@12906 34
pascal@12906 35 # Post and pre install commands
pascal@12906 36 post_install()
pascal@12906 37 {
pascal@12906 38 # Configure lighttpd server
pascal@18730 39 if [ -f "$1/etc/lighttpd/lighttpd.conf" ]; then
pascal@18730 40 if ! grep -q /usr/share/zerobin/ "$1/etc/lighttpd/lighttpd.conf"; then
pascal@18730 41 sed -e 's|.*"/examples/" => "/usr/share/examples/",| "/examples/" => "/usr/share/examples/",\n "/paste/" => "/usr/share/zerobin/",|g' -i "$1/etc/lighttpd/lighttpd.conf"
pascal@12906 42 if [ -z "$1" ]; then
pascal@12906 43 # Start Web server.
pascal@12906 44 /etc/init.d/lighttpd stop
pascal@12906 45 /etc/init.d/lighttpd start
pascal@12906 46 fi
pascal@12906 47 fi
pascal@12906 48 fi
pascal@12906 49 # Configure apache server
pascal@18730 50 if [ -f "$1/etc/apache/httpd.conf" ]; then
pascal@18730 51 sed -i 's/lighttpd/apache/' "$1/etc/rcS.conf"
pascal@18730 52 if [ ! -f "$1/etc/apache/conf.d/zerobin" ]; then
pascal@18730 53 cat > "$1/etc/apache/conf.d/zerobin" <<EOT
pascal@12906 54 <IfModule mod_alias.c>
pascal@12906 55 Alias /paste /usr/share/zerobin/
pascal@12906 56 </IfModule>
pascal@12906 57 <DirectoryMatch /usr/share/zerobin/>
pascal@12906 58 php_value upload_max_filesize 2147483647
pascal@12906 59 DirectoryIndex index.php
pascal@12906 60 AllowOverride None
pascal@12906 61 Order allow,deny
pascal@12906 62 Allow from all
pascal@12906 63 </DirectoryMatch>
pascal@12906 64 EOT
pascal@12906 65 if [ -z "$1" ]; then
pascal@12906 66 # Start Web server.
pascal@12906 67 /etc/init.d/apache restart
pascal@12906 68 fi
pascal@12906 69 fi
pascal@12906 70 fi
pascal@12906 71 }