summaryrefslogtreecommitdiff
path: root/community/yaml-cpp0.3
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2013-01-26 10:54:14 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2013-01-26 10:54:14 -0300
commit38e7e59a562c5f8ea83719e4dfd5cd4c9917d5b1 (patch)
tree8097f94554cc6e2c64d19db24e56e70e041e7757 /community/yaml-cpp0.3
parent328b5407de9f088d32c429b1b37f6efde3da06f8 (diff)
parent7d3e94229ca9849421d263542eb2c61f64a91c10 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/bird/PKGBUILD community/gmic/PKGBUILD community/linux-tools/PKGBUILD community/linux-tools/cpupower.systemd community/linux-tools/usbipd.service community/macchanger/PKGBUILD community/ndisc6/PKGBUILD community/nemiver/PKGBUILD core/gpgme/PKGBUILD extra/amarok/PKGBUILD extra/java-commons-daemon/PKGBUILD extra/libao/PKGBUILD extra/liblastfm/PKGBUILD
Diffstat (limited to 'community/yaml-cpp0.3')
-rw-r--r--community/yaml-cpp0.3/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/yaml-cpp0.3/PKGBUILD b/community/yaml-cpp0.3/PKGBUILD
new file mode 100644
index 000000000..f8f7da315
--- /dev/null
+++ b/community/yaml-cpp0.3/PKGBUILD
@@ -0,0 +1,29 @@
+# $Id: PKGBUILD 82852 2013-01-25 03:41:20Z svenstaro $
+# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
+# Contributor: Markus Martin <markus@archwyrm.net>
+pkgname=yaml-cpp0.3
+_pkgname=yaml-cpp
+pkgver=0.3.0
+pkgrel=2
+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')
+license=('MIT')
+conflicts=('yaml-cpp')
+provides=('yaml-cpp=0.3')
+makedepends=('cmake')
+source=(http://yaml-cpp.googlecode.com/files/$_pkgname-$pkgver.tar.gz)
+md5sums=('9aa519205a543f9372bf4179071c8ac6')
+
+build() {
+ cd $srcdir/$_pkgname
+
+ cmake . -DCMAKE_INSTALL_PREFIX=/usr -DBUILD_SHARED_LIBS=ON
+ make
+}
+
+package() {
+ cd $srcdir/$_pkgname
+
+ make DESTDIR=$pkgdir install
+}