mirror of
https://github.com/archlinux/aur.git
synced 2026-03-06 12:13:06 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
633dd743ab
2 changed files with 41 additions and 0 deletions
16
.SRCINFO
Normal file
16
.SRCINFO
Normal 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
25
PKGBUILD
Normal 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:
|
||||
Loading…
Add table
Reference in a new issue