wok-next view bygfoot/receipt @ rev 21721

created recipes for efivar and efibootmgr
author Hans-G?nter Theisgen
date Tue Sep 01 10:09:15 2020 +0100 (2020-09-01)
parents d5aab818505e
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="bygfoot"
4 VERSION="2.3.2"
5 CATEGORY="games"
6 SHORT_DESC="Manage your own football (soccer) team in a league season"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="GPL2"
9 WEB_SITE="http://www.bygfoot.com/"
11 TARBALL="$PACKAGE-$VERSION.tar.bz2"
12 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL"
14 BUILD_DEPENDS="atk-dev freetype-dev glib-dev gtk2-dev pango pango-dev"
16 compile_rules()
17 {
18 # Binutils 2.22 break many packages build without LDFLAGS set correctly.
19 export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries"
21 chmod +x configure
22 sed -i 's/^top_srcdir/top_builddir = @top_builddir@\n&/' \
23 po/Makefile.in.in
24 ./configure \
25 --prefix=/usr \
26 --bindir=/usr/games \
27 --mandir=/usr/share/man \
28 $CONFIGURE_ARGS &&
29 make $MAKEFLAGS &&
30 make DESTDIR=$install install
31 }
33 genpkg_rules()
34 {
35 cp -a $install/usr $fs
37 # Copy .desktop file:
38 cp -a $stuff/* $fs/usr
40 DEPENDS="acl atk freetype glib gtk2 pango"
41 }