wok-next annotate pysdm/receipt @ rev 20558
openmotif: fix syntax error in receipt
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Apr 07 16:14:50 2018 +0300 (2018-04-07) |
parents | bf4a09ef1d2e |
children | c022997c7a57 |
rev | line source |
---|---|
pascal@15376 | 1 # SliTaz package receipt. |
pascal@15376 | 2 |
pascal@11563 | 3 PACKAGE="pysdm" |
pascal@11563 | 4 VERSION="0.4.1" |
pascal@11563 | 5 CATEGORY="system-tools" |
pascal@11563 | 6 SHORT_DESC="A Storage Device Manager via udev (and not fstab)." |
pascal@11563 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15376 | 8 LICENSE="GPL2" |
pascal@11563 | 9 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pascal@11563 | 10 WEB_SITE="http://pysdm.sourceforge.net/" |
pascal@11563 | 11 WGET_URL="$SF_MIRROR/$PACKAGE/$TARBALL" |
pascal@11563 | 12 |
pascal@11563 | 13 DEPENDS="pygtk" |
pascal@20228 | 14 BUILD_DEPENDS="python python-dev gettext-tools" |
pascal@11563 | 15 |
pascal@11563 | 16 # Rules to configure and make the package. |
pascal@11563 | 17 compile_rules() |
pascal@11563 | 18 { |
pascal@11563 | 19 sed -i 's/gksudo/subox/;s/Settings;//' data/pysdm.desktop |
pascal@11563 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@11563 | 21 --mandir=/usr/share/man \ |
pascal@11563 | 22 $CONFIGURE_ARGS && |
pascal@11563 | 23 make && |
pascal@11563 | 24 make DESTDIR=$DESTDIR install |
pascal@11563 | 25 } |
pascal@11563 | 26 |
pascal@11563 | 27 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@11563 | 28 genpkg_rules() |
pascal@11563 | 29 { |
pascal@15376 | 30 cp -a $install/usr $fs |
pascal@11563 | 31 } |