wok view cbrpager/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (23 months ago)
parents f4c22f009037
children 6b33f9da53d4
line source
1 # SliTaz package receipt.
3 PACKAGE="cbrpager"
4 VERSION="0.9.22"
5 CATEGORY="graphics"
6 SHORT_DESC="Viewer for CBR, CBZ and CB7 (comic book archive) files"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL3"
9 WEB_SITE="http://jcoppens.com/soft/cbrpager/index.en.php"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="libgnome-keyring libgnomeui p7zip-full rar unzip"
14 BUILD_DEPENDS="gettext libgnomeui-dev libgnome-dev libbonoboui-dev \
15 libgnomecanvas-dev libgnome-keyring-dev gtk+-dev"
17 # What is the latest version available today?
18 current_version()
19 {
20 wget -O - https://sourceforge.net/projects/cbrpager/files/cbrpager/ 2>/dev/null | \
21 sed '/scope="row/!d;s|.*href="|"https://sourceforge.net|;q' | xargs wget -O - 2>/dev/null | \
22 sed '/scope="row/!d;s|.*/cbrpager/cbrpager-||;s|/.*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure \
29 $CONFIGURE_ARGS \
30 LDFLAGS="$(pkg-config --libs libgnomeui-2.0 gtk+-2.0)" && \
31 make && \
32 make install
33 }
35 # Rules to gen a SliTaz package suitable for Tazpkg.
36 genpkg_rules()
37 {
38 cp -a $install/* $fs
39 # add Russian translation
40 mkdir -p $fs/usr/share/locale/ru/LC_MESSAGES
41 msgfmt $stuff/ru.po -o $fs/usr/share/locale/ru/LC_MESSAGES/cbrpager.mo
42 }