# HG changeset patch # User Christophe Lincoln # Date 1396564033 -7200 # Node ID a002e94842255d709a0547c1370ece2f6d874951 # Parent b269c5c2be2dad608c8cee217a4bfa031575013a ARM: add: fbpanel and menu-cache diff -r b269c5c2be2d -r a002e9484225 fbpanel/receipt --- a/fbpanel/receipt Fri Apr 04 00:05:33 2014 +0200 +++ b/fbpanel/receipt Fri Apr 04 00:27:13 2014 +0200 @@ -9,6 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tbz2" WEB_SITE="http://fbpanel.sourceforge.net/" WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" +HOST_ARCH="i486 arm" DEPENDS="gtk+" BUILD_DEPENDS="gtk+-dev" diff -r b269c5c2be2d -r a002e9484225 lxmenu-data/receipt --- a/lxmenu-data/receipt Fri Apr 04 00:05:33 2014 +0200 +++ b/lxmenu-data/receipt Fri Apr 04 00:27:13 2014 +0200 @@ -10,13 +10,13 @@ WEB_SITE="http://www.lxde.org/" WGET_URL="$SF_MIRROR/lxde/$TARBALL" CONFIG_FILES="/etc/xdg/menus/lxde-applications.menu" +HOST_ARCH="i486 arm" -BUILD_DEPENDS="gettext intltool" +[ "$ARCH" == "i486" ] && BUILD_DEPENDS="gettext intltool" # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --prefix=/usr \ --sysconfdir=/etc \ diff -r b269c5c2be2d -r a002e9484225 menu-cache-dev/receipt --- a/menu-cache-dev/receipt Fri Apr 04 00:05:33 2014 +0200 +++ b/menu-cache-dev/receipt Fri Apr 04 00:27:13 2014 +0200 @@ -8,6 +8,7 @@ LICENSE="GPL2" WANTED="menu-cache" WEB_SITE="http://lxde.sourceforge.net/" +HOST_ARCH="i486 arm" DEPENDS="menu-cache pkg-config" diff -r b269c5c2be2d -r a002e9484225 menu-cache/receipt --- a/menu-cache/receipt Fri Apr 04 00:05:33 2014 +0200 +++ b/menu-cache/receipt Fri Apr 04 00:27:13 2014 +0200 @@ -9,6 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://lxde.sourceforge.net/" WGET_URL="$SF_MIRROR/lxde/$TARBALL" +HOST_ARCH="i486 arm" DEPENDS="glibc-base glib libgio slitaz-menus" BUILD_DEPENDS="glib-dev libgio-dev" @@ -16,14 +17,12 @@ # Rules to configure and make the package. compile_rules() { - cd $src ./configure \ --prefix=/usr \ --libexecdir=/usr/lib/menu-cache \ --sysconfdir=/etc \ $CONFIGURE_ARGS && - make && - make DESTDIR=$DESTDIR install + make && make install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -32,5 +31,4 @@ mkdir -p $fs/usr/lib cp -a $install/usr/lib/*.so* $fs/usr/lib cp -a $install/usr/lib/menu-cache $fs/usr/lib - strip -s $fs/usr/lib/menu-cache/* }