mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
23 lines
657 B
Bash
23 lines
657 B
Bash
# $Id: PKGBUILD 52375 2009-09-19 01:49:39Z allan $
|
|
# Maintainer: Alexander Fehr <pizzapunk gmail com>
|
|
# Contributor: dorphell <dorphell@archlinux.org>
|
|
|
|
pkgname=sylpheed
|
|
pkgver=2.7.1
|
|
pkgrel=2
|
|
pkgdesc="Lightweight and user-friendly e-mail client"
|
|
arch=('i686' 'x86_64')
|
|
url="http://sylpheed.sraoss.jp/en/"
|
|
license=('GPL')
|
|
depends=('gpgme' 'gtkspell')
|
|
makedepends=('compface')
|
|
source=(http://sylpheed.sraoss.jp/sylpheed/v2.7/sylpheed-$pkgver.tar.bz2)
|
|
md5sums=('1f470525c1fbe53253813a0978c18228')
|
|
|
|
build() {
|
|
cd "$srcdir/sylpheed-$pkgver"
|
|
|
|
./configure --prefix=/usr --enable-ldap || return 1
|
|
make || return 1
|
|
make DESTDIR="$pkgdir" install || return 1
|
|
}
|