mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 16:21:38 +01:00
36 lines
887 B
Plaintext
36 lines
887 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=libical
|
|
pkgver=0.46
|
|
pkgrel=2
|
|
pkgdesc="An open source reference implementation of the icalendar data type and serialization format"
|
|
url="http://sourceforge.net/projects/freeassociation/"
|
|
arch="all"
|
|
license="LGPL MPL"
|
|
depends=
|
|
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 \
|
|
--enable-shared \
|
|
--disable-static \
|
|
|| return 1
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$srcdir"/$pkgname-$pkgver
|
|
make -j1 DESTDIR="$pkgdir" install
|
|
rm "$pkgdir"/usr/lib/*.la
|
|
}
|
|
|
|
md5sums="9c08f88945bfd5d0791d102e4aa4125c libical-0.46.tar.gz"
|