[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gsrc-commit] trunk r10049: update glean to 0.1
|
From: |
Carl Hansen |
|
Subject: |
[Gsrc-commit] trunk r10049: update glean to 0.1 |
|
Date: |
Fri, 15 Mar 2024 13:02:11 -0400 (EDT) |
|
User-agent: |
Bazaar (2.7.0dev1) |
------------------------------------------------------------
revno: 10049
revision-id: carlhansen@gnu.org-20240315170207-neoevy9vv89stk3q
parent: carlhansen@gnu.org-20240315165458-ittkwcjb33pnocz5
committer: carlhansen@gnu.org
branch nick: trunk
timestamp: Fri 2024-03-15 17:02:07 +0000
message:
update glean to 0.1
modified:
pkg/gnu/glean/Makefile makefile-20170514073818-7d27r1u89exh7llb-3
=== modified file 'pkg/gnu/glean/Makefile'
--- a/pkg/gnu/glean/Makefile 2023-12-18 19:22:41 +0000
+++ b/pkg/gnu/glean/Makefile 2024-03-15 17:02:07 +0000
@@ -1,4 +1,4 @@
-# Copyright ?2017,2018,2023 Carl Hansen <carlhansen@gnu.org>
+# Copyright ?2017,2018,2023-2024 Carl Hansen <carlhansen@gnu.org>
#
# This file is part of GSRC, the GNU Source Release Collection.
#
@@ -24,7 +24,7 @@
HOME_URL = https://www.gnu.org/software/glean/
# defunct http://glean.eu
LICENSE = AGPL
-DESCRIPTION = learning environment software
+DESCRIPTION = personal learning environment with collaborative content
define BLURB
The goals of the Glean project are to provide a highly personal learning
environmentd that is nonetheless capable of building on collaborative
@@ -38,14 +38,19 @@
MASTER_SITES = https://git.savannah.gnu.org
MASTER_SUBDIR = git
GIT_PATH = $(MASTER_SITES)/$(MASTER_SUBDIR)/$(GARNAME).git
-GIT_REVISION =
-DISTFILES =
+
+GIT_REVISION = master
SIGFILES =
BUILDDEPS =
LIBDEPS =
-WORKSRC = $(DOWNLOADDIRGIT)/$(GARNAME)
-WORKOBJ = $(WORKSRC)
+
+DISTFILES =
+
+GITSRC = $(DOWNLOADDIRGIT)/$(GARNAME)
+WORKSRC = $(WORKDIR)/$(GARNAME)-$(GIT_REVISION)
+WORKOBJ = $(WORKDIR)/$(GARNAME)-$(GIT_REVISION)-build
+
######################################################################
include ../../../gar/gar.lib/autotools.mk
@@ -53,8 +58,11 @@
include config.mk
fetch: fetch-git
+ mkdir -p $(WORKSRC)
+ cp -a $(GITSRC)/* $(WORKSRC)/
pre-configure: fetch-git
- cd $(WORKSRC) && autoreconf -vif
+ cd $(WORKSRC) && ( test -f configure || autoreconf -vif )
+
| [Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Gsrc-commit] trunk r10049: update glean to 0.1,
Carl Hansen <=