summaryrefslogtreecommitdiff
path: root/extra/chmlib
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-16 13:21:58 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-16 13:21:58 -0300
commitae725ad3435e02f5a191975f11c13476f522db2f (patch)
tree28a907f0dd14c9f52b120143e37159209c3485f7 /extra/chmlib
parent1dae0fd04f3af9134ba98d25a2309a80723e4e5e (diff)
parentebe74a263db3899367e12d936f908cdfdee7ec15 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: multilib/q4wine/PKGBUILD
Diffstat (limited to 'extra/chmlib')
-rw-r--r--extra/chmlib/PKGBUILD17
1 files changed, 10 insertions, 7 deletions
diff --git a/extra/chmlib/PKGBUILD b/extra/chmlib/PKGBUILD
index 7ccadbd06..ef09b6e89 100644
--- a/extra/chmlib/PKGBUILD
+++ b/extra/chmlib/PKGBUILD
@@ -1,25 +1,28 @@
-# $Id: PKGBUILD 42201 2009-06-11 18:45:59Z giovanni $
+# $Id: PKGBUILD 127389 2011-06-14 06:55:42Z andrea $
# Maintainer: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Alexander 'dma147' Mieland <dma147@linux-stats.org>
# Contributor: Simon Morgan <simon@16hz.net>
pkgname=chmlib
pkgver=0.40
-pkgrel=1
+pkgrel=2
pkgdesc="Library for dealing with Microsoft ITSS/CHM format files"
arch=('i686' 'x86_64' 'mips64el')
url="http://morte.jedrea.com/~jedwin/projects/chmlib/"
-options=('!libtool' '!emptydirs')
+options=('!libtool')
license=('LGPL')
depends=('glibc')
-source=(http://morte.jedrea.com/~jedwin/projects/chmlib/${pkgname}-${pkgver}.tar.bz2)
+source=("http://morte.jedrea.com/~jedwin/projects/${pkgname}/${pkgname}-${pkgver}.tar.bz2")
md5sums=('7ea49ed8c335215c1edc6fae83e6b912')
build() {
- cd ${srcdir}/${pkgname}-${pkgver}
+ cd "${srcdir}"/${pkgname}-${pkgver}
./configure --prefix=/usr \
--enable-examples=yes
- make || return 1
- make DESTDIR=${pkgdir} install
+ make
}
+package() {
+ cd "${srcdir}"/${pkgname}-${pkgver}
+ make DESTDIR="${pkgdir}" install
+}