summaryrefslogtreecommitdiff
path: root/extra/libtiger
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
committerroot <root@rshg054.dnsready.net>2012-02-25 23:15:06 +0000
commite4a5730eb358cb0d78bc022204ddccac068c2bf2 (patch)
tree8dc9d2ac6b1313cb68be1a6c8b51500397f8b225 /extra/libtiger
parent299e917c17619f800f0c21cf43209065b608223f (diff)
Sat Feb 25 23:15:06 UTC 2012
Diffstat (limited to 'extra/libtiger')
-rw-r--r--extra/libtiger/PKGBUILD32
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/libtiger/PKGBUILD b/extra/libtiger/PKGBUILD
new file mode 100644
index 000000000..9fc441181
--- /dev/null
+++ b/extra/libtiger/PKGBUILD
@@ -0,0 +1,32 @@
+# $Id: PKGBUILD 151106 2012-02-24 22:13:23Z giovanni $
+# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
+# Contributor: Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>
+
+pkgname=libtiger
+pkgver=0.3.4
+pkgrel=3
+pkgdesc="A rendering library for Kate streams using Pango and Cairo"
+url="http://libtiger.googlecode.com/"
+license=('LGPL')
+arch=('i686' 'x86_64')
+depends=('pango' 'libkate')
+makedepends=('pkg-config')
+options=('!libtool')
+source=("http://libtiger.googlecode.com/files/${pkgname}-${pkgver}.tar.gz")
+md5sums=("dc1dbeb658c95485ba10b9b2897b4ae2")
+
+build() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ ./configure --prefix=/usr \
+ --enable-static=no \
+ --disable-doc
+
+ make
+}
+
+package() {
+ cd "${srcdir}/${pkgname}-${pkgver}"
+
+ make DESTDIR="${pkgdir}" install
+}