wok-next annotate codiad/receipt @ rev 21540

updated cantarell-fonts (0.111 -> 0.201)
author Hans-G?nter Theisgen
date Sun Jun 21 16:26:44 2020 +0100 (2020-06-21)
parents 86b5d202495a
children
rev   line source
al@20473 1 # SliTaz package receipt v2.
pascal@13591 2
pascal@13591 3 PACKAGE="codiad"
pascal@13591 4 GITHASH="51852c63d85dd961527426c4a157c712a74a0859"
pascal@13591 5 VERSION=${GITHASH:0:7}
pascal@13591 6 CATEGORY="office"
al@20473 7 SHORT_DESC="Web-based IDE framework with a small footprint"
pascal@13591 8 MAINTAINER="pascal.bellard@slitaz.org"
pascal@15579 9 LICENSE="MIT"
al@20473 10 WEB_SITE="http://codiad.com/"
al@20473 11
pascal@13591 12 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@13591 13 WGET_URL="https://nodeload.github.com/Fluidbyte/Codiad/tarball/$GITHASH"
pascal@13591 14
al@21111 15 DEPENDS="php"
al@21111 16 CONFIG_FILES="/etc/codiad.php"
al@21111 17
al@20473 18 compile_rules() {
al@20473 19 mkdir -p $install/var/www/codiad $install/etc
al@20473 20 cp -a $src/* $install/var/www/codiad
al@20473 21 chmod 777 $install/var/www/codiad/data
al@20473 22 mv $install/var/www/codiad/config.example.php $install/etc/codiad.php
al@20473 23 ln -s /etc/codiad.php $install/var/www/codiad/config.php
al@21111 24 fix symlinks
al@21111 25 chown -R www:www $install/var/www/codiad
pascal@13591 26 }