diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/libical |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/libical')
-rw-r--r-- | extra/libical/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extra/libical/PKGBUILD b/extra/libical/PKGBUILD new file mode 100644 index 000000000..3f77290ea --- /dev/null +++ b/extra/libical/PKGBUILD @@ -0,0 +1,31 @@ +# $Id $ +# Maintainer: Andrea Scarpino <andrea@archlinux.org> +# Contributor: Pierre Schmitz <pierre@archlinux.de> + +pkgname=libical +pkgver=0.46 +pkgrel=1 +pkgdesc="An open source reference implementation of the icalendar data type and serialization format" +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") +md5sums=('9c08f88945bfd5d0791d102e4aa4125c') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + + ./autogen.sh + libtoolize --force + ./configure --prefix=/usr \ + --enable-shared \ + --disable-static + make +} + +package() { + cd ${srcdir}/${pkgname}-${pkgver} + make DESTDIR=${pkgdir} install +} |