diff options
author | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-26 15:13:41 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernández <hahj87@gmail.com> | 2011-06-26 15:13:41 -0500 |
commit | d26fb8dc20ba3b0e6ef535761b3ac5fd8e7b7c70 (patch) | |
tree | ae84713aa59e8e2eaa4a2a19db89294ea0b4c1cf /extra/catdoc | |
parent | 2095d71af1b9e0c1dff405c178a9481d1020ca3e (diff) | |
parent | 8999fa1750304fb2367fb7743e49e013405e88be (diff) |
Merge branch 'master' of vparabola:~/abslibre-pre-mips64el
Conflicts:
community/distcc/PKGBUILD
community/lxtask/PKGBUILD
community/ushare/PKGBUILD
extra/catdoc/PKGBUILD
extra/curl/PKGBUILD
extra/ethstatus/PKGBUILD
extra/ffcall/PKGBUILD
extra/gimp-dbp/PKGBUILD
extra/gimp-refocus/PKGBUILD
extra/gstreamer0.10-ugly/PKGBUILD
extra/metacity/PKGBUILD
extra/pulseaudio/PKGBUILD
extra/x2x/PKGBUILD
libre/kernel26-libre/PKGBUILD
multilib/lib32-libpulse/PKGBUILD
multilib/wine/PKGBUILD
testing/alex/PKGBUILD
testing/ghc/PKGBUILD
testing/haskell-cgi/PKGBUILD
testing/haskell-deepseq/PKGBUILD
testing/haskell-fgl/PKGBUILD
testing/haskell-glut/PKGBUILD
testing/haskell-haskell-src/PKGBUILD
testing/haskell-html/PKGBUILD
testing/haskell-http/PKGBUILD
testing/haskell-hunit/PKGBUILD
testing/haskell-mtl/PKGBUILD
testing/haskell-network/PKGBUILD
testing/haskell-opengl/PKGBUILD
testing/haskell-parallel/PKGBUILD
testing/haskell-parsec/PKGBUILD
testing/haskell-platform/PKGBUILD
testing/haskell-quickcheck/PKGBUILD
testing/haskell-regex-base/PKGBUILD
testing/haskell-regex-compat/PKGBUILD
testing/haskell-regex-posix/PKGBUILD
testing/haskell-stm/PKGBUILD
testing/haskell-syb/PKGBUILD
testing/haskell-text/PKGBUILD
testing/haskell-transformers/PKGBUILD
testing/haskell-xhtml/PKGBUILD
testing/haskell-zlib/PKGBUILD
testing/perl/ChangeLog
testing/perl/PKGBUILD
testing/perl/perlbin.sh
testing/pidgin/PKGBUILD
testing/spamassassin/PKGBUILD
Diffstat (limited to 'extra/catdoc')
-rw-r--r-- | extra/catdoc/PKGBUILD | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/extra/catdoc/PKGBUILD b/extra/catdoc/PKGBUILD index 45d2be81e..aa4f7da01 100644 --- a/extra/catdoc/PKGBUILD +++ b/extra/catdoc/PKGBUILD @@ -1,10 +1,10 @@ -# $Id: PKGBUILD 31735 2009-03-28 03:50:45Z eric $ +# $Id: PKGBUILD 128489 2011-06-24 04:50:44Z eric $ # Maintainer: Juergen Hoetzel <juergen@archlinux.org> # Contributor: Paulius Palevicius <paulius@birzai.com> pkgname=catdoc pkgver=0.94.2 -pkgrel=2 +pkgrel=3 pkgdesc="A convertor for Microsoft Word, Excel, PowerPoint and RTF Files to text" arch=(i686 x86_64 'mips64el') url="http://www.wagner.pp.ru/~vitus/software/catdoc/" @@ -16,9 +16,12 @@ source=(http://ftp.wagner.pp.ru/pub/catdoc/$pkgname-$pkgver.tar.gz) md5sums=('243e1680bb3e703616f5adecfee24491') build() { - cd $srcdir/$pkgname-$pkgver - ./configure --prefix=/usr --with-wish=/usr/bin/wish || return 1 - make || return 1 - make installroot=$pkgdir mandir=/usr/share/man/man1 install || return 1 + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --with-wish=/usr/bin/wish + make +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make installroot="$pkgdir" mandir=/usr/share/man/man1 install } -# vim: ts=2 sw=2 et ft=sh |