mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
47 lines
1.6 KiB
Bash
47 lines
1.6 KiB
Bash
#Contributor: Andreas Wagner <andreas dot wagner at em dot uni-frankfurt dot de>
|
|
|
|
pkgname=unison-beta
|
|
pkgver=2.45.4
|
|
pkgrel=1
|
|
pkgdesc="Unison is a file-synchronization tool. Beta Version"
|
|
arch=(i686 x86_64)
|
|
license=('GPL2')
|
|
url="http://www.cis.upenn.edu/~bcpierce/unison"
|
|
depends=('glibc')
|
|
makedepends=('ocaml' 'lablgtk2' 'imagemagick')
|
|
optdepends=('gtk2: graphical UI')
|
|
source=(http://www.cis.upenn.edu/~bcpierce/unison/download/releases/unison-$pkgver/unison-$pkgver.tar.gz \
|
|
unison.desktop)
|
|
conflicts=('unison')
|
|
options=(!makeflags)
|
|
install=unison.install
|
|
|
|
build() {
|
|
cd $startdir/src/unison-$pkgver
|
|
CFLAGS=""
|
|
make clean
|
|
make mkProjectInfo
|
|
make UISTYLE=text DEBUGGING=false THREADS=true || return 1
|
|
mkdir -p $startdir/pkg/usr/bin
|
|
install -Dm755 unison $startdir/pkg/usr/bin/unison
|
|
## clean the builddir and rebuild with gtk support
|
|
# make clean
|
|
# make mkProjectInfo
|
|
# make UISTYLE=gtk DEBUGGING=false THREADS=true || return 1
|
|
# install -Dm755 unison $startdir/pkg/usr/bin/unison-gtk
|
|
## clean the builddir and rebuild with gtk2 support
|
|
make clean
|
|
make mkProjectInfo
|
|
make UISTYLE=gtk2 DEBUGGING=false THREADS=true || return 1
|
|
install -Dm755 unison $startdir/pkg/usr/bin/unison-gtk2
|
|
## install a .desktop file; create a compliant icon from ico file and install the png
|
|
install -Dm644 ../unison.desktop $startdir/pkg/usr/share/applications/unison.desktop
|
|
convert win32rc/U.ico unison.png
|
|
install -Dm644 unison-1.png $startdir/pkg/usr/share/pixmaps/unison.png
|
|
## make symlink for .desktop file
|
|
cd $startdir/pkg//usr/bin
|
|
ln -s unison-gtk2 unison-x11
|
|
}
|
|
|
|
md5sums=('b345bff33a6fa21a9733904facd9fca6'
|
|
'2daecba7705455a8e4b769e48b059872')
|