wok annotate libxfce4ui/receipt @ rev 20639

up rclone to v1.44
author Lucas Levrel <llevrel@yahoo.fr>
date Thu Jan 10 21:49:04 2019 +0100 (2019-01-10)
parents a00bf44ed23d
children 6e8b1bcb30e2
rev   line source
erjo@8015 1 # SliTaz package receipt.
erjo@8015 2
erjo@8015 3 PACKAGE="libxfce4ui"
devl547@16201 4 VERSION="4.11.1"
erjo@8015 5 CATEGORY="x-window"
erjo@8015 6 SHORT_DESC="Xfce Gtk Widget library"
erjo@8015 7 MAINTAINER="erjo@slitaz.org"
pascal@15004 8 LICENSE="LGPL2"
erjo@8015 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@8015 10 WEB_SITE="http://www.xfce.org"
devl547@16201 11 WGET_URL="http://archive.xfce.org/src/xfce/$PACKAGE/${VERSION%.*}/$TARBALL"
erjo@8015 12
al@14130 13 DEPENDS="gtk+ libxfce4util libxfconf startup-notification dbus-glib libglade \
pankso@12481 14 util-linux-uuid"
al@14130 15 BUILD_DEPENDS="gtk+-dev libxfce4util-dev libxfconf-dev \
al@14130 16 startup-notification-dev libglade-dev xcb-util-dev util-linux-uuid-dev intltool"
erjo@8015 17
erjo@8015 18 # Rules to configure and make the package.
erjo@8015 19 compile_rules()
erjo@8015 20 {
al@14130 21 ./configure \
erjo@8015 22 --sysconfdir=/etc \
al@14130 23 --disable-debug \
al@14130 24 $CONFIGURE_ARGS &&
erjo@8015 25 make &&
al@14130 26 make DESTDIR=$install install
erjo@8015 27 }
erjo@8015 28
erjo@8015 29 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@8015 30 genpkg_rules()
erjo@8015 31 {
al@14130 32 mkdir -p $fs/usr/lib
al@14130 33 cp -a $install/etc $fs/
al@14130 34 cp -a $install/usr/lib/*.so* $fs/usr/lib
erjo@8015 35 }
erjo@8015 36