summaryrefslogtreecommitdiff
path: root/community/shuffle
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-16 13:21:58 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-06-16 13:21:58 -0300
commitae725ad3435e02f5a191975f11c13476f522db2f (patch)
tree28a907f0dd14c9f52b120143e37159209c3485f7 /community/shuffle
parent1dae0fd04f3af9134ba98d25a2309a80723e4e5e (diff)
parentebe74a263db3899367e12d936f908cdfdee7ec15 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: multilib/q4wine/PKGBUILD
Diffstat (limited to 'community/shuffle')
-rw-r--r--community/shuffle/PKGBUILD14
1 files changed, 11 insertions, 3 deletions
diff --git a/community/shuffle/PKGBUILD b/community/shuffle/PKGBUILD
index e62c9a8cd..d85a4b641 100644
--- a/community/shuffle/PKGBUILD
+++ b/community/shuffle/PKGBUILD
@@ -1,22 +1,30 @@
-# $Id: PKGBUILD 17671 2010-05-24 20:38:13Z spupykin $
+# $Id: PKGBUILD 49301 2011-06-14 09:58:19Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname=shuffle
pkgver=1.5
-pkgrel=2
+pkgrel=3
pkgdesc="Shuffles lines of input."
arch=('i686' 'x86_64' 'mips64el')
url="http://www.w3.org/People/Bos/Shuffle/"
license=('custom')
depends=(glibc)
makedepends=('gcc')
-source=(http://www.w3.org/People/Bos/Shuffle/shuffle.c LICENSE)
+source=(http://www.w3.org/People/Bos/Shuffle/shuffle.c
+ http://www.w3.org/People/Bos/Shuffle/shuffle.1
+ LICENSE)
md5sums=('d337c7e4db93489e3a30ffc8f89ec363'
+ 'a352ff446a3c20f7b6390add7918f21d'
'9dafa5ef909b8a6db992bb8819d3832a')
build() {
cd $srcdir
gcc -o shuffle shuffle.c
+}
+
+package() {
+ cd $srcdir
install -D -m 755 shuffle $pkgdir/usr/bin/shuffle
install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE
+ install -D -m 644 shuffle.1 $pkgdir/usr/share/man/man1/shuffle.1
}