PKGBUILDs/community/shuffle/PKGBUILD
2009-10-09 21:15:33 -05:00

20 lines
574 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
pkgname=shuffle
pkgver=1.5
pkgrel=1
pkgdesc="Shuffles lines of input."
arch=('i686' 'x86_64')
url="http://www.w3.org/People/Bos/Shuffle/"
license=('custom')
makedepends=('gcc')
source=(http://www.w3.org/People/Bos/Shuffle/shuffle.c LICENSE)
md5sums=('d337c7e4db93489e3a30ffc8f89ec363'
'2de39ea6a09c13a9f55727816644398c')
build() {
cd $startdir/src
gcc -o shuffle shuffle.c
install -D -m 755 shuffle $startdir/pkg/usr/bin/shuffle
install -D -m 644 LICENSE $startdir/pkg/usr/share/licenses/$pkgname/LICENSE
}