picturesort-0.3-1

This commit is contained in:
Jaroslav Lichtblau 2014-11-29 12:47:12 +01:00
parent 633dd743ab
commit 5af8470a01
2 changed files with 13 additions and 9 deletions

View file

@ -1,6 +1,6 @@
pkgbase = picturesort
pkgdesc = Sorts pictures on how they look, not by their metadata
pkgver = 0.2
pkgver = 0.3
pkgrel = 1
url = http://www.vanheusden.com/picturesort/
arch = i686
@ -9,8 +9,8 @@ pkgbase = picturesort
depends = fftw
depends = gcc-libs
depends = imagemagick
source = http://www.vanheusden.com/picturesort//picturesort-0.2.tgz
md5sums = f92580b48bf858207b17603124db449e
source = http://www.vanheusden.com/picturesort/picturesort-0.3.tgz
md5sums = 1d98b7a81ee2f94b4cf0ab70d3f35df6
pkgname = picturesort

View file

@ -1,15 +1,16 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
# Contributor: Christoph Zeiler <rabyte*gmail>
pkgname=picturesort
pkgver=0.2
pkgver=0.3
pkgrel=1
pkgdesc="Sorts pictures on how they look, not by their metadata"
arch=('i686' 'x86_64')
url="http://www.vanheusden.com/$pkgname/"
license=('GPL')
depends=('fftw' 'gcc-libs' 'imagemagick')
source=($url/$pkgname-$pkgver.tgz)
md5sums=('f92580b48bf858207b17603124db449e')
source=(http://www.vanheusden.com/$pkgname/$pkgname-$pkgver.tgz)
md5sums=('1d98b7a81ee2f94b4cf0ab70d3f35df6')
build() {
cd $pkgname-$pkgver
@ -18,8 +19,11 @@ build() {
-e 's|Graphics||g' \
-i Makefile
make || return 1
install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
make
}
# vim:set ts=2 sw=2 et:
build() {
cd $pkgname-$pkgver
install -Dm755 $pkgname "${pkgdir}"/usr/bin/$pkgname
}