mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
25 lines
852 B
Bash
25 lines
852 B
Bash
# $Id: PKGBUILD 3494 2009-10-03 21:18:08Z ibiru $
|
|
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
|
# Contributor: Geoffroy Carrier <geoffroy.carrier@koon.fr>
|
|
# Contributor: Benzo <mb_benzo@yahoo.es>
|
|
|
|
pkgname=osmo
|
|
pkgver=0.2.8
|
|
pkgrel=1
|
|
pkgdesc="A handy personal organizer."
|
|
arch=('i686' 'x86_64')
|
|
url="http://sourceforge.net/projects/osmo-pim"
|
|
license=('GPL')
|
|
depends=('gtk2>=2.12' 'libical' 'libnotify' 'libgringotts>=1.2.1' 'libxml2')
|
|
makedepends=('pkgconfig' 'libtar')
|
|
optdepends=('libsyncml')
|
|
source=(http://downloads.sourceforge.net/osmo-pim/$pkgname-$pkgver.tar.gz)
|
|
|
|
build() {
|
|
cd "${srcdir}/$pkgname-$pkgver"
|
|
#libical 0.4.4 workaround
|
|
LIBICAL_CFLAGS='-I/usr/include/libical' ./configure --prefix=/usr || return 1
|
|
make || return 1
|
|
make DESTDIR="${pkgdir}" install || return 1
|
|
}
|
|
md5sums=('7fa83efd27cd3ecc54e73f0ec4e91d81')
|