PKGBUILDs/diriterator/default/PKGBUILD

25 lines
728 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-08-31 20:22:02 +02:00
pkgver=1.0.5
2017-01-20 22:43:15 +01:00
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=
2017-08-31 20:22:02 +02:00
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${pkgname}/archive/v${pkgver}.tar.gz")
sha256sums=('2bfc2ac694e4baade7ba4b62c0c10a695e225ea3c467460e7760a23930576cd9')
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
}