wok view gummi/receipt @ rev 25664

Up perl-convert-asn1 (0.34)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Feb 24 11:01:36 2024 +0000 (2 months ago)
parents 4f7a4ea1e883
children
line source
1 # SliTaz package receipt.
3 PACKAGE="gummi"
4 VERSION="0.6.6"
5 CATEGORY="office"
6 TAGS="editor LaTeX"
7 SHORT_DESC="LaTeX editor designed with simplicity in mind."
8 MAINTAINER="pankso@slitaz.org"
9 LICENSE="MIT"
10 WEB_SITE="https://github.com/alexandervdm/gummi"
12 TARBALL="$PACKAGE-$VERSION.tar.gz"
13 WGET_URL="https://github.com/alexandervdm/$PACKAGE/releases/download/$VERSION/$TARBALL"
15 DEPENDS="gtk+ gtksourceview gtkspell poppler"
16 BUILD_DEPENDS="glib gtk+-dev gtksourceview-dev gtkspell-dev intltool poppler-dev"
18 # What is the latest version available today?
19 current_version()
20 {
21 wget -O - ${WGET_URL%/down*} 2>/dev/null | \
22 sed '/tag\//!d;s|.*tag/v*||;s|".*||;q'
23 }
25 # Rules to configure and make the package.
26 compile_rules()
27 {
28 ./configure $CONFIGURE_ARGS &&
29 make LDFLAGS="-Wl,--copy-dt-needed-entries -lgthread-2.0" -j 1 &&
30 make install
31 }
33 # Rules to gen a SliTaz package suitable for Tazpkg.
34 genpkg_rules()
35 {
36 mkdir -p $fs/usr/share
37 cp -a $install/usr/bin $fs/usr
38 cp -a $install/usr/share/gummi $fs/usr/share
39 }