1
0
forked from ports/contrib

23 lines
454 B
Plaintext
Raw Normal View History

2016-06-14 16:32:19 +03:00
# Description: Simple distributed SCM
2016-10-24 22:54:24 +03:00
# URL: https://www.fossil-scm.org/
2018-02-26 14:41:50 -05:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
2017-07-23 22:57:33 +03:00
# Depends on: openssl zlib
2016-10-24 22:54:24 +03:00
# Optional: fuse
2016-06-14 16:32:19 +03:00
name=fossil
2017-11-25 20:24:04 +02:00
version=2.4
2016-06-14 16:32:19 +03:00
release=1
2017-03-12 16:04:41 +02:00
source=(https://www.fossil-scm.org/index.html/uv/$name-src-$version.tar.gz)
2016-06-14 16:32:19 +03:00
build() {
2017-03-05 23:32:49 +02:00
cd $name-$version
2016-06-14 16:32:19 +03:00
./configure --prefix=/usr \
--json \
--with-th1-docs \
--with-th1-hooks
make
make install DESTDIR=$PKG
}