blob: f4b2eefe2c61587405097ba259fe3f8b046b217e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Contributor: David Pflug <Viaken@Gmail.com>
# Maintainer : Parabola GNU / Linux-libre Aurelien Desbrieres <aurelien@cwb.io>
_author=TLINDEN
_perlmod=note
pkgname=$_perlmod
pkgver=1.3.12
pkgrel=2
pkgdesc="A Perl-based note taking application with multiple backends"
arch=('i686' 'x86_64')
url="http://www.daemon.de/NOTE"
license=('GPL')
depends=('perl' 'perl-yaml')
optdepends=(
'perl-config-general: general db backend'
'perl-crypt-cbc: encryption support'
'perl-crypt-pwsafe3: password safe 3 backend'
'perl-crypt-rijndael: encryption support'
'perl-dbd-mysql: mysql db backend'
'perl-dbi: mysql db backend'
)
source=(http://cpan.perl.org/modules/by-authors/id/T/TL/$_author/$_perlmod-$pkgver.tar.gz)
build() {
cd "$srcdir/$pkgname-$pkgver"
PERL_MM_USE_DEFAULT=1 perl Makefile.PL INSTALLDIRS=vendor
make
}
package() {
cd "$srcdir/$pkgname-$pkgver"
make install DESTDIR="$pkgdir"
}
|