blob: f81249b36a8dc2afb6576fe986a60f201cf3aace (
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
35
|
# Contributor (Arch) : David Pflug <Viaken@Gmail.com>
# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp>
_author=TLINDEN
_perlmod=note
pkgname=$_perlmod
pkgver=1.3.18
pkgrel=1.1
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)
sha1sums=('1415c08c2c21ff444d8a0f29ab77f032718ad0a1')
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"
}
|