commit e802cd293df2e3d1b395b5193aaa800074bfa9bd Author: Jaroslav Lichtblau Date: Fri Nov 28 20:17:14 2014 +0100 Initial PKGBUILD status as of 28.11.2014 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 000000000000..da442eb2e40e --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,13 @@ +pkgbase = mencal + pkgdesc = A simple variation of the well-known unix command cal, with periodically repeating days highlighted in color + pkgver = 2.4 + pkgrel = 1 + url = http://kyberdigi.cz/projects/mencal + arch = any + license = GPL + depends = perl + source = http://kyberdigi.cz/projects/mencal/files/mencal-2.4.tar.gz + sha256sums = dcb603fcfb36f5bdce69e22ff52ff12b953de08531392d94557c29e5de492c69 + +pkgname = mencal + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 000000000000..a07bf26d5fb3 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,19 @@ +# Maintainer: Jaroslav Lichtblau +# Contributor: Alessio 'mOLOk' Bolognino + +pkgname=mencal +pkgver=2.4 +pkgrel=1 +pkgdesc="A simple variation of the well-known unix command cal, with periodically repeating days highlighted in color" +arch=('any') +url="http://kyberdigi.cz/projects/mencal" +license=('GPL') +depends=('perl') +source=(http://kyberdigi.cz/projects/$pkgname/files/$pkgname-$pkgver.tar.gz) +sha256sums=('dcb603fcfb36f5bdce69e22ff52ff12b953de08531392d94557c29e5de492c69') + +package() { + cd ${srcdir}/$pkgname-$pkgver + + install -D -m755 $pkgname ${pkgdir}/usr/bin/$pkgname +}