2012-09-10 23:34:51 +08:00
|
|
|
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
pkgname=libical
|
2012-09-10 23:34:51 +08:00
|
|
|
pkgver=0.48
|
2010-03-14 23:48:48 +08:00
|
|
|
pkgrel=1
|
2012-09-10 23:34:51 +08:00
|
|
|
pkgdesc="An open source reference implementation of the icalendar data type and serialization format."
|
2010-03-14 23:48:48 +08:00
|
|
|
arch=('i686' 'x86_64')
|
|
|
|
url='http://sourceforge.net/projects/freeassociation/'
|
|
|
|
license=('LGPL' 'MPL')
|
|
|
|
depends=('glibc')
|
|
|
|
options=('!libtool')
|
|
|
|
source=("http://downloads.sourceforge.net/freeassociation/${pkgname}-${pkgver}.tar.gz")
|
2012-09-10 23:34:51 +08:00
|
|
|
md5sums=('e549f434d5fbf9cd156c60ed4943618f')
|
2010-03-14 23:48:48 +08:00
|
|
|
|
|
|
|
build() {
|
2012-09-10 23:34:51 +08:00
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
|
2010-03-14 23:48:48 +08:00
|
|
|
./configure --prefix=/usr \
|
2012-09-10 23:34:51 +08:00
|
|
|
--enable-shared \
|
|
|
|
--disable-static \
|
|
|
|
|| return 1
|
|
|
|
|
|
|
|
make
|
2010-03-14 23:48:48 +08:00
|
|
|
}
|
2012-09-10 23:34:51 +08:00
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
make install DESTDIR="${pkgdir}"
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|