mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 05:52:19 +01:00
add exiflow
This commit is contained in:
commit
8437a79acb
2 changed files with 38 additions and 0 deletions
14
.SRCINFO
Normal file
14
.SRCINFO
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
pkgbase = exiflow
|
||||
pkgdesc = Exiflow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes.
|
||||
pkgver = 0.4.5
|
||||
pkgrel = 3
|
||||
url = http://exiflow.sourceforge.net/
|
||||
arch = any
|
||||
license = GPL
|
||||
depends = perl-exiftool
|
||||
depends = pygtk
|
||||
source = http://downloads.sourceforge.net/project/exiflow/exiflow/0.4.5/Exiflow-0.4.5.tar.gz
|
||||
sha256sums = 36eeced2de5a726aef572c42e9b71aca2d957ea51c72b5e56720eec736b29320
|
||||
|
||||
pkgname = exiflow
|
||||
|
||||
24
PKGBUILD
Normal file
24
PKGBUILD
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
# Maintainer: mutantmonkey <aur@mutantmonkey.in>
|
||||
# Contributor: Laurent Meunier <laurent@deltalima.net>
|
||||
pkgname=exiflow
|
||||
pkgver=0.4.5
|
||||
pkgrel=1
|
||||
pkgdesc="Exiflow is a set of tools (command line and GUI) to provide a complete digital photo workflow for Unixes."
|
||||
arch=('any')
|
||||
url="http://exiflow.sourceforge.net/"
|
||||
license=('GPL')
|
||||
depends=(perl-exiftool pygtk)
|
||||
source=(http://downloads.sourceforge.net/project/exiflow/exiflow/${pkgver}/Exiflow-${pkgver}.tar.gz)
|
||||
sha256sums=('36eeced2de5a726aef572c42e9b71aca2d957ea51c72b5e56720eec736b29320')
|
||||
|
||||
package() {
|
||||
cd ${srcdir}
|
||||
|
||||
install -m755 -d "${pkgdir}/usr/bin"
|
||||
install -m755 ${srcdir}/usr/bin/{exiassign,exiconvert,exigate,exigui,exiimport,exiperson,exirename} "${pkgdir}/usr/bin"
|
||||
|
||||
install -m755 -d "${pkgdir}/usr/share/exiflow/exiflow"
|
||||
cp ${srcdir}/usr/share/exiflow/exiflow/* "${pkgdir}/usr/share/exiflow/exiflow"
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:A
|
||||
Loading…
Add table
Reference in a new issue