7aa77fb2eb
use system sqlite3
27 lines
550 B
Plaintext
27 lines
550 B
Plaintext
# Description: Simple distributed SCM
|
|
# URL: https://www.fossil-scm.org/
|
|
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
|
|
# Depends on: openssl sqlite3 zlib
|
|
# Optional: fuse
|
|
|
|
name=fossil
|
|
version=2.10
|
|
release=1
|
|
source=(https://www.fossil-scm.org/index.html/uv/$name-src-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--disable-internal-sqlite \
|
|
--json \
|
|
--with-th1-docs \
|
|
--with-th1-hooks
|
|
|
|
make
|
|
make install DESTDIR=$PKG
|
|
|
|
install -D -m 0644 fossil.1 $PKG/usr/share/man/man1/fossil.1
|
|
}
|