PKGBUILDs/community/poedit/PKGBUILD
2009-10-09 21:15:33 -05:00

25 lines
837 B
Bash

# $Id: PKGBUILD 3064 2009-09-26 15:07:15Z ibiru $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Giovanni Scafora <giovanni@archlinux.org>
# Contributor: Alexander Fehr <pizzapunk@gmail.com>
pkgname=poedit
pkgver=1.4.3
pkgrel=2
pkgdesc="Cross-platform gettext catalogs (.po files) editor"
arch=('i686' 'x86_64')
url="http://www.poedit.net/"
license=('custom')
depends=('wxgtk>=2.8.0' 'gtkspell' 'db>=4.8' 'db<4.9' 'hicolor-icon-theme')
makedepends=('pkgconfig')
install=poedit.install
source=(http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz)
md5sums=('8b3f6350287db3f3271cb0534ad4e244')
build() {
cd ${srcdir}/${pkgname}-${pkgver}
./configure --prefix=/usr
make || return 1
make DESTDIR=${pkgdir} install
install -D -m644 COPYING ${pkgdir}/usr/share/licenses/${pkgname}/LICENSE
}