diff options
Diffstat (limited to 'community/datemath/PKGBUILD')
-rw-r--r-- | community/datemath/PKGBUILD | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/community/datemath/PKGBUILD b/community/datemath/PKGBUILD new file mode 100644 index 000000000..f4ce236b5 --- /dev/null +++ b/community/datemath/PKGBUILD @@ -0,0 +1,21 @@ +# $Id: PKGBUILD 18094 2010-05-31 09:25:01Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Todd Musall <tmusall@comcast.net> +# Contributor: Todd Musall <tmusall@comcast.net> + +pkgname=datemath +pkgver=2.0.10 +pkgrel=2 +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 $srcdir + make || return 1 + install -D -m755 $srcdir/datemath $pkgdir/usr/bin/datemath +} |