summaryrefslogtreecommitdiff
path: root/fossil/Pkgfile
blob: 00d01fdef2f27f7dd4f05a54eddfa570e1966dd5 (plain)
    1 # Description: Simple distributed SCM
    2 # URL:         https://www.fossil-scm.org/
    3 # Maintainer:  John Vogel, jvogel4 at stny dot rr dot com
    4 # Depends on:  openssl sqlite3 zlib
    5 # Optional:    fuse
    6 
    7 name=fossil
    8 version=2.14
    9 release=1
   10 source=(https://www.fossil-scm.org/index.html/uv/$name-src-$version.tar.gz)
   11 
   12 build() {
   13 	cd $name-$version
   14 
   15 	./configure \
   16 		--prefix=/usr \
   17 		--disable-internal-sqlite \
   18 		--json \
   19 		--with-th1-docs \
   20 		--with-th1-hooks
   21 
   22 	make -j1 bld bld/headers
   23 	make -j1
   24 	make install DESTDIR=$PKG
   25 
   26 	install -D -m 0644 fossil.1 $PKG/usr/share/man/man1/fossil.1
   27 }

Generated by cgit