contrib/fossil/Pkgfile

24 lines
497 B
Plaintext
Raw Normal View History

2016-06-14 15:32:19 +02:00
# Description: Simple distributed SCM
2016-10-24 21:54:24 +02:00
# URL: https://www.fossil-scm.org/
2016-06-14 15:32:19 +02:00
# Maintainer: Svyatoslav Mishyn, juef at openmailbox dot org
# Depends on: openssl sqlite3 zlib
2016-10-24 21:54:24 +02:00
# Optional: fuse
2016-06-14 15:32:19 +02:00
name=fossil
2017-03-12 15:04:41 +01:00
version=2.1
2016-06-14 15:32:19 +02:00
release=1
2017-03-12 15:04:41 +01:00
source=(https://www.fossil-scm.org/index.html/uv/$name-src-$version.tar.gz)
2016-06-14 15:32:19 +02:00
build() {
2017-03-05 22:32:49 +01:00
cd $name-$version
2016-06-14 15:32:19 +02:00
./configure --prefix=/usr \
--disable-internal-sqlite \
--json \
--with-th1-docs \
--with-th1-hooks
make
make install DESTDIR=$PKG
}