wok view mm-common/receipt @ rev 23406

updated perl-text-template (1.44 -> 1.58)
author Hans-G?nter Theisgen
date Wed Apr 01 06:37:49 2020 +0100 (2020-04-01)
parents 6796b09294f1
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="mm-common"
4 VERSION="1.0.0"
5 CATEGORY="development"
6 SHORT_DESC="Common build files of the C++ bindings."
7 MAINTAINER="slaxemulator@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://www.gtkmm.org/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="autoconf automake wget"
15 # busybox wget is not sufficient
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./autogen.sh --prefix=/usr &&
21 make &&
22 make install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs
29 cp -a $install/usr $fs
30 }