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
|
2022-11-10 10:36:52 +01:00
|
|
|
# URL: https://github.com/bcpierce00/unison
|
2021-03-08 13:28:15 +01:00
|
|
|
# Depends on: ocaml
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=unison
|
2023-03-20 10:53:40 +01:00
|
|
|
version=2.53.1
|
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 15:26:10 +00: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 15:26:10 +00:00
|
|
|
}
|