blob: 6b3dc0074252b590c2966674c2201b136fe1e8e5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# $Id: PKGBUILD 57697 2009-11-01 15:08:02Z tpowa $
#Maintainer: Tobias Powalowski <tpowa@archlinux.org>
pkgname=unison
pkgver=2.32.52
pkgrel=1
pkgdesc="Unison is a file-synchronization tool"
arch=(i686 x86_64)
license=('GPL2')
url="http://www.cis.upenn.edu/~bcpierce/unison"
depends=('glibc')
#makedepends=('ocaml' 'lablgtk' 'lablgtk2' 'imagemagick')
#makedepends=('ocaml' 'imagemagick')
makedepends=('ocaml' )
source=(http://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/$pkgname-$pkgver.tar.gz \
$pkgname.desktop)
options=(!makeflags)
install=unison.install
build() {
cd $startdir/src/$pkgname-$pkgver
CFLAGS=""
make clean
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 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 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 ../$pkgname.desktop $startdir/pkg/usr/share/applications/$pkgname.desktop
# convert win32rc/U.ico unison.png
# install -Dm644 ${pkgname}-1.png $startdir/pkg/usr/share/pixmaps/$pkgname.png
# make symlink for .desktop file
# cd $startdir/pkg//usr/bin
# ln -s unison-gtk2 unison-x11
}
md5sums=('0701f095c1721776a0454b94607eda48'
'2daecba7705455a8e4b769e48b059872')
|