Overview
Comment:Mise à jour recette pour récupération des dépendances
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | dev
Files: files | file ages | folders
SHA1: 090b738a8299c996b05f54ee2986cab780e80678
User & Date: bohwaz on 2017-08-30 05:31:47
Other Links: branch diff | manifest | tags
Context
2017-08-31
07:24
Utilisation de la nouvelle version de \KD2\Image check-in: 6de6092e2e user: bohwaz tags: dev
2017-08-30
05:31
Mise à jour recette pour récupération des dépendances check-in: 090b738a82 user: bohwaz tags: dev
2017-08-23
01:46
Correction : supprimer_spip devient supprimer_skriv check-in: 9c4c674920 user: bohwaz tags: dev
Changes

Modified src/Makefile from [aff0166871] to [5b75c7c58b].

1
2
3
4
5
6
7
8
9
10

11
12
13
14
15
KD2_BRANCH=dev

deps:
	$(eval TMP_KD2=$(shell mktemp -d))
	#cd ${TMP_KD2}

	wget --no-check-certificate https://fossil.kd2.org/kd2fw/zip/KD2+Framework-${KD2_BRANCH}.zip?uuid=${KD2_BRANCH} -O ${TMP_KD2}/kd2.zip
	unzip "${TMP_KD2}/kd2.zip" -d ${TMP_KD2}

	rm -rf "include/lib/KD2"

	mv "${TMP_KD2}/KD2 Framework-${KD2_BRANCH}/src/lib/kd2" "include/lib/KD2"
	rm -rf ${TMP_KD2}

dev-server:
	php -S localhost:8082 -t www www/_route.php
|





<
|


>
|




1
2
3
4
5
6

7
8
9
10
11
12
13
14
15
KD2_FILE := https://fossil.kd2.org/kd2fw/uv/KD2-5.6.zip

deps:
	$(eval TMP_KD2=$(shell mktemp -d))
	#cd ${TMP_KD2}


	wget ${KD2_FILE} -O ${TMP_KD2}/kd2.zip

	rm -rf "include/lib/KD2"
	unzip "${TMP_KD2}/kd2.zip" -d include/lib

	rm -rf ${TMP_KD2}

dev-server:
	php -S localhost:8082 -t www www/_route.php