PKGBUILDs/diriterator/default/PKGBUILD

27 lines
674 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
pkgver=1.0.3
pkgrel=2
pkgdesc="Runs a script for each file in a directory hierarchy using GNU parallel."
arch=('any')
license=('GPL')
groups=
provides=
2015-12-02 02:20:30 +01:00
depends=('parallel')
2015-08-01 20:54:37 +02:00
makedepends=
conflicts=
replaces=
backup=
install=
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/Martchus/${pkgname}/archive/v${pkgver}.tar.gz")
noextract=
2015-08-27 22:41:20 +02:00
md5sums=('SKIP')
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
}