diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /extra/psiconv |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'extra/psiconv')
-rw-r--r-- | extra/psiconv/PKGBUILD | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/extra/psiconv/PKGBUILD b/extra/psiconv/PKGBUILD new file mode 100644 index 000000000..0fb78ec8b --- /dev/null +++ b/extra/psiconv/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 86765 2010-08-03 22:27:52Z ibiru $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> + +pkgname=psiconv +pkgver=0.9.8 +pkgrel=7 +pkgdesc="Converts Psion 5(MX) files to more commonly used file formats" +arch=('i686' 'x86_64') +url="http://software.frodo.looijaard.name/psiconv/" +license=('GPL') +depends=('imagemagick') +makedepends=('bc') +backup=('etc/psiconv/psiconv.conf') +options=('!libtool') +source=(http://software.frodo.looijaard.name/${pkgname}/files/${pkgname}-${pkgver}.tar.gz) +md5sums=('8d7548e3c6b9cd408544736133728acd') + +build() { + cd ${srcdir}/${pkgname}-${pkgver} + ./configure --prefix=/usr \ + --sysconfdir=/etc \ + --mandir=/usr/share/man + make || return 1 + make DESTDIR=${pkgdir} install +} |