Initial PKGBUILD status as of 28.11.2014

This commit is contained in:
Jaroslav Lichtblau 2014-11-28 20:17:14 +01:00
commit e5541c7b38
2 changed files with 34 additions and 0 deletions

13
.SRCINFO Normal file
View file

@ -0,0 +1,13 @@
pkgbase = lite2do
pkgdesc = A lightweight command-line todo manager written in Perl
pkgver = 1.1.1
pkgrel = 1
url = http://w2do.blackened.cz/
arch = any
license = GPL3
depends = perl
source = http://w2do.googlecode.com/files/lite2do-1.1.1.tar.gz
md5sums = 370bcf901aef70faca6de7dcccb412a3
pkgname = lite2do

21
PKGBUILD Normal file
View file

@ -0,0 +1,21 @@
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
pkgname=lite2do
pkgver=1.1.1
pkgrel=1
pkgdesc="A lightweight command-line todo manager written in Perl"
arch=('any')
url="http://w2do.blackened.cz/"
license=('GPL3')
depends=('perl')
source=(http://w2do.googlecode.com/files/$pkgname-$pkgver.tar.gz)
md5sums=('370bcf901aef70faca6de7dcccb412a3')
build() {
cd $pkgname-$pkgver
make INSTALL=/bin/install \
POD2MAN=/usr/lib/perl5/core_perl/bin/pod2man \
prefix=${pkgdir}/usr \
install
}