mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-01-24 10:32:15 +08:00
22 lines
600 B
Bash
22 lines
600 B
Bash
# Maintainer: Phil Miller <philm@chakra-project.org>
|
|
|
|
pkgname=run-parts
|
|
pkgver=3.2.3
|
|
pkgrel=1
|
|
pkgdesc='run scripts or programs in a directory'
|
|
arch=('i686' 'x86_64')
|
|
url='http://packages.qa.debian.org/d/debianutils.html'
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
source=("http://ftp.de.debian.org/debian/pool/main/d/debianutils/debianutils_${pkgver}.tar.bz2")
|
|
md5sums=('d66c337329114092d1ddab6adfdab57e')
|
|
|
|
build() {
|
|
cd $srcdir/debianutils-$pkgver
|
|
./configure --prefix=/usr
|
|
make
|
|
|
|
install -D -m755 run-parts $pkgdir/usr/bin/run-parts
|
|
install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
|
|
}
|