PKGBUILDs/diriterator/default/PKGBUILD

25 lines
730 B
Bash
Raw Normal View History

2015-08-01 20:54:37 +02:00
# Maintainer: Martchus <martchus@gmx.net>
# All my PKGBUILDs are managed at https://github.com/Martchus/PKGBUILDs where
# you also find the URL of a binary repository.
2015-08-01 20:54:37 +02:00
pkgname=diriterator
2017-01-20 22:43:15 +01:00
pkgver=1.0.4
pkgrel=1
2016-09-11 23:37:58 +02:00
pkgdesc='Runs a script for each file in a directory hierarchy using GNU parallel.'
2015-08-01 20:54:37 +02:00
arch=('any')
license=('GPL')
2017-01-20 22:43:15 +01:00
groups=()
provides=()
2015-12-02 02:20:30 +01:00
depends=('parallel')
2017-01-20 22:43:15 +01:00
makedepends=()
conflicts=()
replaces=()
2015-08-01 20:54:37 +02:00
install=
2016-09-11 23:37:58 +02:00
source=("${_reponame}-${pkgver}.tar.gz::https://github.com/Martchus/${pkgname}/archive/v${pkgver}.tar.gz")
2017-01-20 22:43:15 +01:00
sha256sums=('95edb6da1226e69d643d9be46cdc6d33d1c721e40de15ea5faade22faf3c8ec9')
2015-08-01 20:54:37 +02:00
package() {
2015-12-24 16:50:30 +01:00
install -Dm755 "${srcdir}/${PROJECT_DIR_NAME:-$pkgname-$pkgver}/${pkgname}.sh" "${pkgdir}/usr/bin/${pkgname}"
2015-08-01 20:54:37 +02:00
}