summaryrefslogtreecommitdiff
path: root/community/yaml-cpp
diff options
context:
space:
mode:
Diffstat (limited to 'community/yaml-cpp')
-rw-r--r--community/yaml-cpp/PKGBUILD11
1 files changed, 6 insertions, 5 deletions
diff --git a/community/yaml-cpp/PKGBUILD b/community/yaml-cpp/PKGBUILD
index ee79f87fb..e87b249b8 100644
--- a/community/yaml-cpp/PKGBUILD
+++ b/community/yaml-cpp/PKGBUILD
@@ -1,25 +1,26 @@
+# $Id: PKGBUILD 82853 2013-01-25 03:41:30Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Markus Martin <markus@archwyrm.net>
pkgname=yaml-cpp
-pkgver=0.3.0
+pkgver=0.5.0
pkgrel=1
pkgdesc="YAML parser and emitter in C++, written around the YAML 1.2 spec"
url="http://code.google.com/p/yaml-cpp/"
arch=('i686' 'x86_64' 'mips64el')
license=('MIT')
-makedepends=('cmake')
+makedepends=('cmake' 'boost')
source=(http://yaml-cpp.googlecode.com/files/$pkgname-$pkgver.tar.gz)
-md5sums=('9aa519205a543f9372bf4179071c8ac6')
+md5sums=('c6d96190434d5959d814c603f98512c6')
build() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
make
}
package() {
- cd $srcdir/$pkgname
+ cd $srcdir/$pkgname-$pkgver
make DESTDIR=$pkgdir install
}