mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-12 12:12:24 +01:00
27 lines
690 B
Plaintext
27 lines
690 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
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="perl"
|
|
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"
|