From 139c5b05dfde86523f53eb18e1e8eee913fe6a89 Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 19 May 2010 09:28:46 +0000 Subject: testing/libical: new aport An open source reference implementation of the icalendar data type and serialization format http://sourceforge.net/projects/freeassociation/ --- testing/libical/APKBUILD | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 testing/libical/APKBUILD (limited to 'testing/libical/APKBUILD') diff --git a/testing/libical/APKBUILD b/testing/libical/APKBUILD new file mode 100644 index 000000000..122662217 --- /dev/null +++ b/testing/libical/APKBUILD @@ -0,0 +1,26 @@ +# Maintainer: Natanael Copa +pkgname=libical +pkgver=0.44 +pkgrel=0 +pkgdesc="An open source reference implementation of the icalendar data type and serialization format" +url="http://sourceforge.net/projects/freeassociation/" +license="LGPL MPL" +depends= +makedepends= +subpackages="$pkgname-dev" +source="http://downloads.sourceforge.net/freeassociation/$pkgname-$pkgver.tar.gz" + +build() { + cd "$srcdir"/$pkgname-$pkgver + ./configure --prefix=/usr \ + --enable-shared \ + --disable-static \ + || return 1 + make || return 1 +} + +package() { + cd "$srcdir"/$pkgname-$pkgver + make DESTDIR="$pkgdir" install +} +md5sums="e0403c31e1ed82569325685f8c15959c libical-0.44.tar.gz" -- cgit v1.2.3 From d4f5a6a6f4f1ad6f0e0f63c7b4e8379564f5095a Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 19 May 2010 09:57:46 +0000 Subject: testing/libical: build fix: needs perl --- testing/libical/APKBUILD | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'testing/libical/APKBUILD') diff --git a/testing/libical/APKBUILD b/testing/libical/APKBUILD index 122662217..22ef96784 100644 --- a/testing/libical/APKBUILD +++ b/testing/libical/APKBUILD @@ -6,7 +6,7 @@ pkgdesc="An open source reference implementation of the icalendar data type and url="http://sourceforge.net/projects/freeassociation/" license="LGPL MPL" depends= -makedepends= +makedepends="perl" subpackages="$pkgname-dev" source="http://downloads.sourceforge.net/freeassociation/$pkgname-$pkgver.tar.gz" -- cgit v1.2.3