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

21 lines
581 B
Bash

# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
# Maintainer: Todd Musall <tmusall@comcast.net>
# Contributor: Todd Musall <tmusall@comcast.net>
pkgname=datemath
pkgver=2.0.10
pkgrel=1
pkgdesc="Command line date and time math utility."
arch=('i686' 'x86_64')
url="http://www.unixwiz.net/tools/datemath.html"
license=("GPL")
depends=('glibc')
source=(http://www.unixwiz.net/tools/$pkgname.tar.gz)
md5sums=('2c369d70a43313b71dbe3c7cc50207de')
build() {
cd $startdir/src
make || return 1
cd $startdir
install -D -m755 $startdir/src/datemath $startdir/pkg/usr/bin/datemath
}