summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-06-04 13:43:14 -0300
commitcbba2111ae585b17594535ec01f13bac66937331 (patch)
treef097dd36996ae3c7c96c9f91c1dd428670572b80 /testing
parentabcaa80b2d3bb539503c485bfea891adc7ffc193 (diff)
parent1e6588d64f084decf287a58b7ff93ff0ce4d0446 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/multipath-tools/PKGBUILD community/perl-gnome2-wnck/PKGBUILD community/znc/PKGBUILD core/openldap/PKGBUILD extra/mod_perl/PKGBUILD extra/perl-digest-nilsimsa/PKGBUILD extra/php/PKGBUILD extra/pidgin/PKGBUILD extra/postgresql/PKGBUILD extra/vim/PKGBUILD extra/xcb-util-keysyms/PKGBUILD extra/xcb-util-wm/PKGBUILD extra/xournal/PKGBUILD kde-unstable/kdepim/PKGBUILD multilib/lib32-libx11/PKGBUILD multilib/lib32-libxft/PKGBUILD multilib/lib32-xcb-util/PKGBUILD
Diffstat (limited to 'testing')
-rw-r--r--testing/run-parts/PKGBUILD28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/run-parts/PKGBUILD b/testing/run-parts/PKGBUILD
new file mode 100644
index 000000000..c29ffb194
--- /dev/null
+++ b/testing/run-parts/PKGBUILD
@@ -0,0 +1,28 @@
+# $Id: PKGBUILD 160459 2012-06-02 09:35:46Z pierre $
+# Maintainer: Pierre Schmitz <pierre@archlinux.de>
+
+pkgname=run-parts
+pkgver=4.3.1
+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=("ftp://ftp.archlinux.org/other/run-parts/debianutils_${pkgver}.tar.gz")
+sha256sums=('03cbb242b8b86f444477e0bbe8e391c18aec8f8d08a2a02e8893efd1d5d6e4bc')
+
+build() {
+ cd $srcdir/debianutils-$pkgver
+ ./configure --prefix=/usr
+ make run-parts
+}
+
+package() {
+ cd $srcdir/debianutils-$pkgver
+ install -D -m755 run-parts $pkgdir/usr/bin/run-parts
+ install -D -m644 run-parts.8 $pkgdir/usr/share/man/man8/run-parts.8
+ for l in po4a/*/run-parts.8; do
+ install -D -m644 ${l} $pkgdir/usr/share/man/${l:5:2}/man8/run-parts.8
+ done
+}