mirror of
https://github.com/archlinux/aur.git
synced 2026-03-05 10:52:47 +01:00
Initial PKGBUILD status as of 28.11.2014
This commit is contained in:
commit
8e73dc5e30
2 changed files with 35 additions and 0 deletions
13
.SRCINFO
Normal file
13
.SRCINFO
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
pkgbase = w2do
|
||||
pkgdesc = A simple-to-use commandline todo manager that can export to HTML and plain text
|
||||
pkgver = 2.3.1
|
||||
pkgrel = 2
|
||||
url = http://w2do.blackened.cz/
|
||||
arch = any
|
||||
license = GPL3
|
||||
depends = perl
|
||||
source = http://w2do.googlecode.com/files/w2do-2.3.1.tar.gz
|
||||
sha256sums = 59ed2c75446fa7456b4252e602265477538c02e64f00e3c7f61cc4d9ad8e5c02
|
||||
|
||||
pkgname = w2do
|
||||
|
||||
22
PKGBUILD
Normal file
22
PKGBUILD
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org>
|
||||
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
|
||||
|
||||
pkgname=w2do
|
||||
pkgver=2.3.1
|
||||
pkgrel=2
|
||||
pkgdesc="A simple-to-use commandline todo manager that can export to HTML and plain text"
|
||||
arch=('any')
|
||||
url="http://w2do.blackened.cz/"
|
||||
license=('GPL3')
|
||||
depends=('perl')
|
||||
source=(http://w2do.googlecode.com/files/$pkgname-$pkgver.tar.gz)
|
||||
sha256sums=('59ed2c75446fa7456b4252e602265477538c02e64f00e3c7f61cc4d9ad8e5c02')
|
||||
|
||||
package() {
|
||||
cd $pkgname-$pkgver
|
||||
|
||||
make INSTALL=/usr/bin/install \
|
||||
POD2MAN=/usr/bin/core_perl/pod2man \
|
||||
prefix=${pkgdir}/usr \
|
||||
install
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue