Overview
| Comment: | Added Fossil package | 
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive | 
| Timelines: | family | ancestors | descendants | both | packages | 
| Files: | files | file ages | folders | 
| SHA1: | 346731593e59014a903e7d78ed72bb57 | 
| User & Date: | rkeene on 2015-03-20 15:18:34 | 
| Other Links: | branch diff | manifest | tags | 
Context
| 2015-03-20 | ||
| 15:19 | Added support for packages linking to the native system check-in: d8aa72a9f7 user: rkeene tags: packages | |
| 15:18 | Added Fossil package check-in: 346731593e user: rkeene tags: packages | |
| 2014-11-20 | ||
| 21:00 | Added start of ffmpeg build recipe check-in: 651b8c103c user: rkeene tags: packages | |
Changes
Added pkgs/fossil version [c83508e264].
| > > > > > > > > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 
#! /usr/bin/env bash
version='1.32'
url="https://www.fossil-scm.org/download/fossil-src-${version}.tar.gz"
sha256='cd79c333eb9e86fbb8c17bf5cdf31c387e4ab768eede623aed21adfdbcad686e'
require=(zlib@core.appfs.rkeene.org)
function configure() {
	configure_gcc
	CCACHE=none
	export CCACHE
	./configure "${configure_extra[@]}"
}
function build() {
	make
}
function install() {
	mkdir -p "${destdir}/${prefix}/bin"
	cp fossil "${destdir}/${prefix}/bin/"
	chmod 755 "${destdir}/${prefix}/bin/fossil"
}
 |