mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
624 B
Bash
22 lines
624 B
Bash
|
# $Id: PKGBUILD 28321 2009-02-28 18:47:51Z kevin $
|
||
|
# 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=(i686 x86_64)
|
||
|
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
|
||
|
}
|