contrib/fossil/Pkgfile

28 lines
580 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/
2018-02-26 20:41:50 +01:00
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# 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
2021-01-23 12:28:20 +01:00
version=2.14
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
2016-06-14 15:32:19 +02:00
2020-12-21 17:13:54 +01:00
make -j1 bld bld/headers
make -j1
2016-06-14 15:32:19 +02:00
make install DESTDIR=$PKG
install -D -m 0644 fossil.1 $PKG/usr/share/man/man1/fossil.1
2016-06-14 15:32:19 +02:00
}