mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 09:37:14 +08:00
32 lines
749 B
Bash
32 lines
749 B
Bash
# Maintainer: Daniele Cocca <jmc@chakra-project.org>
|
|
|
|
pkgname=libical
|
|
pkgver=0.48
|
|
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=('e549f434d5fbf9cd156c60ed4943618f')
|
|
|
|
build() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
|
|
./configure --prefix=/usr \
|
|
--enable-shared \
|
|
--disable-static \
|
|
|| return 1
|
|
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
|
make install DESTDIR="${pkgdir}"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|