blob: 0cdfe2d1108dbd1ec8212038c74a4bb0cc7b074e (
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
5
6 name=sylpheed
7 version=3.7.0
8 release=1
9 source=(https://sylpheed.sraoss.jp/sylpheed/v3.7/$name-$version.tar.xz)
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 }
|