blob: 1ecf76da416f81a03f4337b8e6c003a6d28fc5ff (
plain)
1 # Description: GTK+ email client and news reader
2 # URL: http://sylpheed.sraoss.jp/en/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: gtk, openssl
5
6 name=sylpheed
7 version=3.4.3
8 release=1
9 source=(http://sylpheed.sraoss.jp/sylpheed/v3.4/$name-$version.tar.bz2)
10
11 build () {
12 cd $name-$version
13
14 ./configure --prefix=/usr
15 make
16 make DESTDIR=$PKG install
17
18 sed -ri '/\[.+\]=/d' sylpheed.desktop
19 install -d $PKG/usr/share/{applications,pixmaps}
20 install -m 0644 sylpheed.desktop $PKG/usr/share/applications
21 install -m 0644 sylpheed.png $PKG/usr/share/pixmaps
22
23 rm -r $PKG/usr/share/{locale,sylpheed}
24 }
|