opt/unison/Pkgfile

18 lines
486 B
Plaintext
Raw Normal View History

2006-12-22 19:15:21 +01:00
# Description: Bi-directional file synchronization tool
2021-03-08 13:28:15 +01:00
# Maintainer: Juergen Daubert, jue at crux dot nu
# URL: https://www.cis.upenn.edu/~bcpierce/unison/
# Depends on: ocaml
2006-02-23 16:26:10 +01:00
name=unison
2021-06-29 15:45:51 +02:00
version=2.51.4
2016-05-27 15:30:50 +02:00
release=1
2021-03-08 13:28:15 +01:00
source=(https://github.com/bcpierce00/unison/archive/v$version/$name-$version.tar.gz)
2006-02-23 16:26:10 +01:00
build() {
2021-03-08 13:28:15 +01:00
cd $name-$version
unset CFLAGS CXXFLAGS
make UISTYLE=text THREADS=true NATIVE=true
install -d $PKG/usr/bin
install -m 0755 src/{unison,unison-fsmonitor} $PKG/usr/bin/
2006-02-23 16:26:10 +01:00
}