wok view fbreader/receipt @ rev 5539

Up gfortran (4.5.0)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu May 13 10:00:52 2010 +0200 (2010-05-13)
parents
children bd94cca0f444
line source
1 # SliTaz package receipt.
3 PACKAGE="fbreader"
4 VERSION="0.12.10"
5 CATEGORY="utilities"
6 SHORT_DESC="E-Book Reader. Supports many e-book formats."
7 MAINTAINER="devl547@gmail.com"
8 TARBALL="$PACKAGE-sources-$VERSION.tgz"
9 WEB_SITE="http://www.fbreader.org/"
10 WGET_URL="http://www.fbreader.org/$TARBALL"
11 BUILD_DEPENDS="expat-dev liblinebreak-dev curl-dev fribidi-dev bzip2-dev sqlite-dev gtk+-dev"
12 DEPENDS="expat liblinebreak curl fribidi bzip2 sqlite gtk+"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 echo "UI_TYPE = gtk" >> makefiles/target.mk
19 echo "TARGET_STATUS = release" >> makefiles/target.mk
20 make &&
21 make DESTDIR=$PWD/_pkg install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr
28 cp -a $_pkg/usr/bin $fs/usr
29 cp -a $_pkg/usr/lib $fs/usr
30 cp -a $_pkg/usr/share $fs/usr
31 }