blob: 18e6e11f50dec42afca00e6e5d592c31698826a2 (
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
31
32
33
34
35
36
|
# Maintainer: Guillaume Horel <guillaume.horel@gmail.com>
pkgname=belcard-git
_pkgname=belcard
pkgver=4.4.0.alpha.r1.g45b0a20
pkgrel=1
pkgdesc="A library for working with vCards"
arch=('x86_64')
url="http://www.linphone.org/"
license=('GPL')
conflicts=('belcard')
provides=("belcard=$pkgver")
depends=('belr>=4.3')
makedepends=('cmake' 'git')
source=("git+https://github.com/BelledonneCommunications/$_pkgname.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
git describe --long | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${srcdir}"
mkdir -p build
cd build
cmake -DCMAKE_PREFIX_PATH="/usr/lib" \
-DCMAKE_INSTALL_PREFIX="/usr" \
-DENABLE_STATIC=NO "../$_pkgname"
make
}
package() {
cd "${srcdir}/build"
make DESTDIR="${pkgdir}" install
}
|