diff options
Diffstat (limited to 'main/libical')
-rw-r--r-- | main/libical/APKBUILD | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/main/libical/APKBUILD b/main/libical/APKBUILD index 22ef967848..dcb58ef9cb 100644 --- a/main/libical/APKBUILD +++ b/main/libical/APKBUILD @@ -1,15 +1,21 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=libical -pkgver=0.44 +pkgver=0.46 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="perl" +makedepends="perl autoconf automake libtool" subpackages="$pkgname-dev" source="http://downloads.sourceforge.net/freeassociation/$pkgname-$pkgver.tar.gz" +prepare() { + cd "$srcdir"/$pkgname-$pkgver + aclocal && autoheader && autoconf && automake -a || return 1 + libtoolize --force +} + build() { cd "$srcdir"/$pkgname-$pkgver ./configure --prefix=/usr \ @@ -21,6 +27,6 @@ build() { package() { cd "$srcdir"/$pkgname-$pkgver - make DESTDIR="$pkgdir" install + make -j1 DESTDIR="$pkgdir" install } -md5sums="e0403c31e1ed82569325685f8c15959c libical-0.44.tar.gz" +md5sums="9c08f88945bfd5d0791d102e4aa4125c libical-0.46.tar.gz" |