wok-undigest view mate-common/receipt @ rev 1230

python3: sqlite3-dev replaced by sqlite-dev
author Hans-G?nter Theisgen
date Wed Sep 09 14:09:02 2020 +0100 (2020-09-09)
parents 3f059c1d154b
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mate-common"
4 VERSION="1.4.0"
5 CATEGORY="x-window"
6 SHORT_DESC="MATE Desktop common files."
7 MAINTAINER="pankso@slitaz.org"
8 WEB_SITE="http://mate-desktop.org"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WGET_URL="http://pub.mate-desktop.org/releases/1.4/$TARBALL"
12 DEPENDS=""
13 BUILD_DEPENDS="automake autoconf"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 cd $src
19 sed -i 's/automake-1.12/automake-1.13 &/' macros/mate-autogen
20 ./autogen.sh $CONFIGURE_ARGS &&
21 make && make install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/share
28 cp -a $install/usr/bin $fs/usr
29 cp -a $install/usr/share/aclocal $fs/usr/share
30 cp -a $install/usr/share/mate-common $fs/usr/share
31 }