summaryrefslogtreecommitdiff
path: root/community-staging/wxsvg/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community-staging/wxsvg/PKGBUILD')
-rw-r--r--community-staging/wxsvg/PKGBUILD27
1 files changed, 27 insertions, 0 deletions
diff --git a/community-staging/wxsvg/PKGBUILD b/community-staging/wxsvg/PKGBUILD
new file mode 100644
index 000000000..f45080b0c
--- /dev/null
+++ b/community-staging/wxsvg/PKGBUILD
@@ -0,0 +1,27 @@
+# $Id: PKGBUILD 57642 2011-10-31 19:38:03Z jelle $
+# Contributor: Alexander Fehr <pizzapunk gmail com>
+# Maintainer: Daniel J Griffiths <ghost1227@archlinux.us>
+
+pkgname=wxsvg
+pkgver=1.1.2
+pkgrel=2
+pkgdesc="C++ library to create, manipulate and render SVG files"
+arch=('i686' 'x86_64')
+url="http://wxsvg.sourceforge.net/"
+license=('custom:wxWindows')
+depends=('wxgtk' 'libart-lgpl' 'ffmpeg')
+options=('!libtool')
+source=("http://downloads.sourceforge.net/project/wxsvg/wxsvg/${pkgver}/wxsvg-${pkgver}.tar.bz2")
+md5sums=('d88b0a68334df157fa560413681c3264')
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ ./configure --prefix=/usr
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+ make DESTDIR="${pkgdir}" install
+ install -D -m644 COPYING "${pkgdir}/usr/share/licenses/wxsvg/COPYING"
+}