wok-next diff sundown/receipt @ rev 21280

gimp: added build dependencies
author Hans-G?nter Theisgen
date Sat Dec 07 17:24:40 2019 +0100 (2019-12-07)
parents d6378d455338
children
line diff
     1.1 --- a/sundown/receipt	Thu May 10 21:12:00 2018 +0300
     1.2 +++ b/sundown/receipt	Sat Dec 07 17:24:40 2019 +0100
     1.3 @@ -2,32 +2,24 @@
     1.4  
     1.5  PACKAGE="sundown"
     1.6  VERSION="1.16.0"
     1.7 -COMMIT="37728fb2d7137ff7c37d0a474cb827a8d6d846d8"
     1.8 +COMMIT="37728fb"
     1.9  CATEGORY="utilities"
    1.10  SHORT_DESC="Standards compliant, fast, secure markdown processing library in C"
    1.11  MAINTAINER="al.bobylev@gmail.com"
    1.12  LICENSE="ISC"
    1.13  WEB_SITE="https://github.com/vmg/sundown"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16  WGET_URL="$WEB_SITE/archive/$COMMIT.tar.gz"
    1.17  
    1.18 -DEPENDS=""
    1.19 -BUILD_DEPENDS=""
    1.20 -
    1.21 -# Rules to configure and make the package.
    1.22 -compile_rules()
    1.23 -{
    1.24 +compile_rules() {
    1.25  	#sed -i 's|O3|Os|' $src/Makefile
    1.26  	sed -i 's|-Wl||' Makefile
    1.27  
    1.28 -	make
    1.29 -
    1.30 -	mkdir -p $install/usr/bin
    1.31 -	cp -a $src/sundown $install/usr/bin
    1.32 +	make &&
    1.33 +	install -Dm755 sundown $install/usr/bin/sundown
    1.34  }
    1.35  
    1.36 -# Rules to gen a SliTaz package suitable for Tazpkg.
    1.37 -genpkg_rules()
    1.38 -{
    1.39 -	cp -a $install/* $fs
    1.40 +genpkg_rules() {
    1.41 +	copy @std
    1.42  }