wok annotate edbus/receipt @ rev 25037

Up glza (0.11.4)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat May 21 21:38:29 2022 +0000 (24 months ago)
parents b01314c762e9
children
rev   line source
pankso@2913 1 # SliTaz package receipt.
pankso@2913 2
pankso@2913 3 PACKAGE="edbus"
pankso@16141 4 VERSION="1.7.10"
pankso@2913 5 CATEGORY="x-window"
al@20422 6 SHORT_DESC="EFL Dbus wrapping and glue layer library."
pankso@2913 7 MAINTAINER="pankso@slitaz.org"
pascal@14994 8 LICENSE="BSD"
pankso@2913 9 SOURCE="e_dbus"
pankso@2913 10 TARBALL="$SOURCE-$VERSION.tar.bz2"
pascal@20421 11 WEB_SITE="https://www.enlightenment.org/"
pascal@25021 12 WGET_URL="https://download.enlightenment.org/__old/att/releases/$TARBALL"
domcox@14404 13 TAGS="e enlightenment efl"
pankso@16141 14 HOST_ARCH="i486 arm"
pankso@2913 15
domcox@14404 16 DEPENDS="ecore dbus"
domcox@14404 17 BUILD_DEPENDS="ecore-dev dbus-dev"
erjo@9929 18
pascal@24759 19 # What is the latest version available today?
pascal@24759 20 current_version()
pascal@24759 21 {
pascal@24759 22 wget -O - https://git.enlightenment.org/legacy/e_dbus.git/ 2>/dev/null | \
pascal@24759 23 sed '/h=v[0-9]/!d;s|.*>v||;s|<.*||;q'
pascal@24759 24 }
pascal@24759 25
pankso@2913 26 # Rules to configure and make the package.
pankso@2913 27 compile_rules()
pankso@2913 28 {
pankso@16141 29 export CFLAGS="$CFLAGS -fvisibility=hidden"
pankso@16141 30 export LDFLAGS="$LDFLAGS -fvisibility=hidden"
domcox@14671 31 ./configure --disable-doc $CONFIGURE_ARGS &&
domcox@14671 32 make $MAKEFILE && make install
pankso@2913 33 }
pankso@2913 34
pankso@2913 35 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@2913 36 genpkg_rules()
pankso@2913 37 {
pankso@2913 38 mkdir -p $fs/usr/lib
pankso@13641 39 cp -a $install/usr/bin $fs/usr
pankso@13641 40 cp -a $install/usr/lib/*.so* $fs/usr/lib
pankso@2913 41 }