wok-next diff libspiro/receipt @ rev 21727
created recipe for vbindiff
author | Hans-G?nter Theisgen |
---|---|
date | Sat Nov 21 14:32:44 2020 +0100 (2020-11-21) |
parents | d5aab818505e |
children |
line diff
1.1 --- a/libspiro/receipt Fri Nov 02 14:15:08 2018 +0200 1.2 +++ b/libspiro/receipt Sat Nov 21 14:32:44 2020 +0100 1.3 @@ -1,32 +1,24 @@ 1.4 # SliTaz package receipt v2. 1.5 1.6 PACKAGE="libspiro" 1.7 -VERSION="0.3.20150131" 1.8 +VERSION="0.5.20150702" 1.9 CATEGORY="misc" 1.10 SHORT_DESC="Spiro simplifies the drawing of beautiful curves" 1.11 MAINTAINER="al.bobylev@gmail.com" 1.12 LICENSE="GPL3" 1.13 WEB_SITE="https://github.com/fontforge/libspiro" 1.14 1.15 -TARBALL="$PACKAGE-$VERSION.tar.gz" 1.16 -WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" 1.17 +TARBALL="$PACKAGE-dist-$VERSION.tar.gz" 1.18 +WGET_URL="https://github.com/fontforge/libspiro/releases/download/$VERSION/$TARBALL" 1.19 +TARBALL_SHA1="2520a0d4c43e9db3d2d137885a8a29633f4b2c5e" 1.20 1.21 -BUILD_DEPENDS="autoconf automake libtool bash" 1.22 SPLIT="$PACKAGE-dev" 1.23 1.24 compile_rules() { 1.25 - autoreconf -i 1.26 - automake --foreign -Wall 1.27 - 1.28 - ./configure $CONFIGURE_ARGS && 1.29 + ./configure \ 1.30 + --disable-static \ 1.31 + $CONFIGURE_ARGS && 1.32 fix libtool && 1.33 make && 1.34 make install 1.35 } 1.36 - 1.37 -genpkg_rules() { 1.38 - case $PACKAGE in 1.39 - libspiro) copy @std;; 1.40 - *-dev) copy @dev;; 1.41 - esac 1.42 -}