diff options
Diffstat (limited to 'community/shuffle/PKGBUILD')
-rw-r--r-- | community/shuffle/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/community/shuffle/PKGBUILD b/community/shuffle/PKGBUILD new file mode 100644 index 000000000..35b02a375 --- /dev/null +++ b/community/shuffle/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 17671 2010-05-24 20:38:13Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> + +pkgname=shuffle +pkgver=1.5 +pkgrel=2 +pkgdesc="Shuffles lines of input." +arch=('i686' 'x86_64') +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) +md5sums=('d337c7e4db93489e3a30ffc8f89ec363' + '9dafa5ef909b8a6db992bb8819d3832a') + +build() { + cd $srcdir + gcc -o shuffle shuffle.c + install -D -m 755 shuffle $pkgdir/usr/bin/shuffle + install -D -m 644 LICENSE $pkgdir/usr/share/licenses/$pkgname/LICENSE +} |