wok-next diff cclcfox/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents d3eb5f4b53ea
children
line diff
     1.1 --- a/cclcfox/receipt	Thu Mar 26 09:34:19 2015 +0100
     1.2 +++ b/cclcfox/receipt	Tue Sep 01 10:31:46 2020 +0000
     1.3 @@ -3,31 +3,29 @@
     1.4  PACKAGE="cclcfox"
     1.5  VERSION="0.7.0"
     1.6  CATEGORY="development"
     1.7 -SHORT_DESC="server gui for libccls"
     1.8 +SHORT_DESC="Server GUI for libccls"
     1.9  MAINTAINER="allan316@gmail.com"
    1.10  LICENSE="GPL2"
    1.11 +WEB_SITE="http://ccl.sourceforge.net/"
    1.12 +
    1.13  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.14 -WEB_SITE="http://ccl.sourceforge.net"
    1.15 -WGET_URL="http://nchc.dl.sourceforge.net/project/ccl/cclcfox/$VERSION/$TARBALL"
    1.16 +WGET_URL="$SF_MIRROR/ccl/$TARBALL"
    1.17  
    1.18 -DEPENDS="libcclc fox14"
    1.19  BUILD_DEPENDS="libcclc-dev fox14-dev"
    1.20  
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 +compile_rules() {
    1.25  	export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lX11"
    1.26  	./configure \
    1.27  		--prefix=/usr \
    1.28  		--infodir=/usr/share/info \
    1.29  		--mandir=/usr/share/man \
    1.30  		$CONFIGURE_ARGS &&
    1.31 -	make && make DESTDIR=$DESTDIR install
    1.32 +	make &&
    1.33 +	make DESTDIR=$install install
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 +genpkg_rules() {
    1.40  	mkdir -p $fs/usr
    1.41  	cp -a $install/usr/bin $fs/usr
    1.42 +	DEPENDS="libcclc fox14"
    1.43  }