28 lines
766 B
Plaintext
28 lines
766 B
Plaintext
# Description: GTK+ email client and news reader
|
|
# URL: http://sylpheed.sraoss.jp/en/
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
# Depends on: gtk, openssl
|
|
|
|
name=sylpheed
|
|
version=2.5.0
|
|
release=2
|
|
source=(http://sylpheed.sraoss.jp/sylpheed/v2.5/$name-$version.tar.bz2
|
|
$name-$version-gtk-2.14.patch)
|
|
|
|
build () {
|
|
cd $name-$version
|
|
|
|
patch -p1 -i $SRC/$name-$version-gtk-2.14.patch
|
|
|
|
./configure --prefix=/usr
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
sed -ri '/\[.+\]=/d' sylpheed.desktop
|
|
install -d $PKG/usr/share/{applications,pixmaps}
|
|
install -m 0644 sylpheed.desktop $PKG/usr/share/applications
|
|
install -m 0644 sylpheed.png $PKG/usr/share/pixmaps
|
|
|
|
rm -r $PKG/usr/share/{locale,sylpheed}
|
|
}
|