wok view gitmail/receipt @ rev 21804

Up vlc (3.0.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Aug 15 18:25:28 2019 +0200 (2019-08-15)
parents d3fe634de29c
children 932cd974e081
line source
1 # SliTaz package receipt.
3 PACKAGE="gitmail"
4 VERSION="0.4"
5 CATEGORY="network"
6 SHORT_DESC="Ghost In The Mail is a simple mail client."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://gitmail.sourceforge.net/"
11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
13 DEPENDS="gtk+ xorg-libXdamage"
14 BUILD_DEPENDS="pkg-config gtk+ gtk+-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lpthread"
21 ./configure --prefix=/usr $CONFIGURE_ARGS 2>&1 | grep -v /config.rpath &&
22 make &&
23 make DESTDIR=$DESTDIR \
24 gitmaildocdir=/usr/share/doc/GhostInTheMail \
25 install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr
32 cp -a $install/usr/bin $fs/usr
33 }