mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
20 lines
567 B
Bash
20 lines
567 B
Bash
# Maintainer: Kevin Piche <kevin@archlinux.org>
|
|
|
|
pkgname=zim
|
|
_realname=Zim
|
|
pkgver=0.28
|
|
pkgrel=1
|
|
pkgdesc="A WYSIWYG text editor that aims at bringing the concept of a wiki to the desktop"
|
|
arch=('arm')
|
|
license=('GPL' 'PerlArtistic')
|
|
url="http://zim-wiki.org/"
|
|
source=(http://www.zim-wiki.org/downloads/${_realname}-${pkgver}.tar.gz)
|
|
depends=('gtk2-perl' 'librsvg' 'perl-file-mimeinfo')
|
|
md5sums=('fce152562b57d4753edfcdc635a26e42')
|
|
|
|
build() {
|
|
cd ${srcdir}/${_realname}-${pkgver}
|
|
perl Build.PL destdir=${pkgdir} installdirs=vendor
|
|
perl Build
|
|
perl Build install
|
|
}
|