diff options
Diffstat (limited to 'community/converseen/PKGBUILD')
-rw-r--r-- | community/converseen/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/community/converseen/PKGBUILD b/community/converseen/PKGBUILD new file mode 100644 index 000000000..e482e7fdc --- /dev/null +++ b/community/converseen/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 95471 2013-08-12 20:28:10Z eric $ +# Maintainer: Giovanni Scafora <giovanni@archlinux.org> +# Contributor: archtux <antonio.arias99999 at gmail.com> + +pkgname=converseen +pkgver=0.6.4 +pkgrel=2 +pkgdesc="The batch image converter and resizer" +arch=('i686' 'x86_64') +url="http://converseen.sourceforge.net/" +license=('GPL3') +depends=('imagemagick' 'qt4' 'libwmf' 'openexr') +makedepends=('cmake') +install=converseen.install +source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.bz2") +md5sums=('072cb40a495e539661ea789131555f79') + +build() { + cd "${srcdir}" + mkdir build + cd build + cmake ../${pkgname}-${pkgver} \ + -DCMAKE_BUILD_TYPE=Release \ + -DCMAKE_INSTALL_PREFIX=/usr + make +} + +package() { + cd "${srcdir}/build" + + make DESTDIR="${pkgdir}" install +} |