wok annotate gksu/receipt @ rev 23621

updated ruby and ruby-dev (2.6.4 -> 2.7.1)
author Hans-G?nter Theisgen
date Tue Apr 14 15:51:31 2020 +0100 (2020-04-14)
parents
children b78e79c31b1f
rev   line source
al@21783 1 # SliTaz package receipt.
al@21783 2
al@21783 3 PACKAGE="gksu"
al@21783 4 VERSION="2.0.2"
al@21783 5 CATEGORY="admin"
al@21783 6 SHORT_DESC="A GTK+ frontend to su and sudo"
al@21783 7 MAINTAINER="devel@slitaz.org"
al@21783 8 LICENSE="GPL2"
al@21783 9 WEB_SITE="https://www.nongnu.org/gksu/"
al@21783 10
al@21783 11 TARBALL="$PACKAGE-$VERSION.tar.gz"
al@21783 12 WGET_URL="https://people.debian.org/~kov/gksu/$TARBALL"
al@21783 13
al@21783 14 BUILD_DEPENDS="gfortran intltool GConf-dev libgksu-dev gtk+-dev \
al@21783 15 startup-notification-dev libgnome-keyring-dev libgtop-dev"
al@21783 16
al@21783 17 DEPENDS="atk bzlib cairo fontconfig freetype GConf gdk-pixbuf glib gtk+ \
al@21783 18 harfbuzz libffi libgio libgksu libgnome-keyring libpng libxcb libxml2 pango \
al@21783 19 pcre pixman startup-notification xorg-libX11 xorg-libXau xorg-libXdmcp \
al@21783 20 xorg-libXext xorg-libXrender zlib"
al@21783 21
al@21783 22 compile_rules() {
al@21783 23 patch -p1 -i $stuff/gksu.patch
al@21783 24
al@21783 25 ./configure \
al@21783 26 --sysconfdir=/etc \
al@21783 27 --disable-nautilus-extension \
al@21783 28 $CONFIGURE_ARGS &&
al@21783 29 make &&
al@21783 30 make install
al@21783 31 }
al@21783 32
al@21783 33 genpkg_rules() {
al@21783 34 mkdir -p $fs/usr/lib $fs/usr/share
al@21783 35
al@21783 36 cp -a $install/usr/bin $fs/usr
al@21783 37 cp -a $install/usr/share/applications $fs/usr/share
al@21783 38 cp -a $install/usr/share/gksu $fs/usr/share
al@21783 39 cp -a $install/usr/share/pixmaps $fs/usr/share
al@21783 40 }