Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit 633dd743ab
2 changed files with 41 additions and 0 deletions

16
.SRCINFO Normal file
View file

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

25
PKGBUILD Normal file
View file

@ -0,0 +1,25 @@
# Contributor: Christoph Zeiler <rabyte*gmail>
pkgname=picturesort
pkgver=0.2
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')
build() {
cd $pkgname-$pkgver
sed -e 's|-O2||g' \
-e 's|Graphics||g' \
-i Makefile
make || return 1
install -Dm755 $pkgname $pkgdir/usr/bin/$pkgname
}
# vim:set ts=2 sw=2 et: