blob: 9fc2ff9a4c14f1f1b3f2e073cf5140cf286be337 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Maintainer: Loui Chang <base64:bG91aXBjLmlzdEBnbWFpbC5jb20=>
# Contributor: Jeff Mickey <j@codemac.net>
pkgname=libvc-git
pkgver=1
pkgrel=2
pkgdesc="vCard library, part of rolo project."
arch=('i686' 'x86_64')
url="https://github.com/yourealwaysbe/libvc"
license=("LGPL")
depends=('glibc')
makedepends=('flex' 'git' 'autoconf')
conflicts=(libvc)
provides=(libvc)
source=(git+https://github.com/yourealwaysbe/libvc.git)
md5sums=('SKIP')
build() {
cd ${srcdir}/libvc
autoreconf -f -i
./configure --prefix=/usr
make
}
package() {
cd ${srcdir}/libvc
make DESTDIR=${pkgdir} install
find ${pkgdir} -name '*.la' -exec rm {} \;
}
|