summaryrefslogtreecommitdiff
path: root/gnome-unstable/gtkmm3/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-02 13:15:07 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-10-02 13:15:07 -0300
commit399a563eb2c30475d66ced8203aff23d65e540e8 (patch)
treefc3d829608b2434293be837200a8267ca789342e /gnome-unstable/gtkmm3/PKGBUILD
parent3aff11a8581ae7e5a8ccea02062cd92f873c44c5 (diff)
parent941550cbc215d608bd18439f99500b74fbb80f0d (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/yagf/PKGBUILD extra/antlr2/PKGBUILD gnome-unstable/baobab/PKGBUILD gnome-unstable/baobab/baobab.install testing/iputils/PKGBUILD testing/iputils/iputils.install
Diffstat (limited to 'gnome-unstable/gtkmm3/PKGBUILD')
-rw-r--r--gnome-unstable/gtkmm3/PKGBUILD38
1 files changed, 38 insertions, 0 deletions
diff --git a/gnome-unstable/gtkmm3/PKGBUILD b/gnome-unstable/gtkmm3/PKGBUILD
new file mode 100644
index 000000000..63ec30798
--- /dev/null
+++ b/gnome-unstable/gtkmm3/PKGBUILD
@@ -0,0 +1,38 @@
+# $Id: PKGBUILD 167340 2012-10-01 14:04:39Z heftig $
+# Maintainer: Ionut Biru <ibiru@archlinux.org>
+
+pkgbase=gtkmm3
+_pkgbasename=gtkmm
+pkgname=('gtkmm3' 'gtkmm3-docs')
+pkgver=3.5.13
+pkgrel=1
+arch=('i686' 'x86_64')
+makedepends=('gtk3' 'pangomm' 'atkmm' 'glibmm-docs' 'mm-common' 'doxygen' 'libxslt')
+license=('LGPL')
+options=('!libtool' '!emptydirs')
+url="http://www.gtkmm.org/"
+source=(http://ftp.gnome.org/pub/GNOME/sources/$_pkgbasename/${pkgver%.*}/$_pkgbasename-$pkgver.tar.xz)
+sha256sums=('2dcd3654f1e88cd80d1641e91bb9bceb10216ee74ec400c14f7bb7c5e4cecbfc')
+
+build() {
+ cd "$_pkgbasename-$pkgver"
+ ./configure --prefix=/usr
+ make
+}
+
+package_gtkmm3() {
+ pkgdesc="C++ bindings for gtk3"
+ depends=('gtk3' 'pangomm' 'atkmm')
+ cd "$_pkgbasename-$pkgver"
+
+ sed -i -e 's/^doc_subdirs/#doc_subdirs/' Makefile
+
+ make DESTDIR="$pkgdir" install
+}
+
+package_gtkmm3-docs() {
+ pkgdesc="Developer documentation for gtkmm v3"
+
+ cd "$_pkgbasename-$pkgver"
+ make -C docs DESTDIR="$pkgdir" install
+}