wok-current annotate libspiro/receipt @ rev 24435
updated consolekit2 and consolekit2-dev (1.2.1 -> 1.2.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sun Feb 13 07:06:09 2022 +0100 (2022-02-13) |
parents | 613c3bd6bc9b |
children | 245803765742 |
rev | line source |
---|---|
al@17914 | 1 # SliTaz package receipt. |
al@17914 | 2 |
al@17914 | 3 PACKAGE="libspiro" |
Hans-G?nter@21301 | 4 VERSION="0.5.20150702" |
al@17914 | 5 CATEGORY="misc" |
al@17914 | 6 SHORT_DESC="Spiro simplifies the drawing of beautiful curves." |
al@17914 | 7 MAINTAINER="al.bobylev@gmail.com" |
al@17914 | 8 LICENSE="GPL3" |
al@17914 | 9 WEB_SITE="https://github.com/fontforge/libspiro" |
Hans-G?nter@21301 | 10 |
al@17914 | 11 TARBALL="$PACKAGE-$VERSION.tar.gz" |
al@17914 | 12 WGET_URL="$WEB_SITE/archive/$VERSION.tar.gz" |
al@17914 | 13 |
al@17914 | 14 DEPENDS="" |
Hans-G?nter@21301 | 15 BUILD_DEPENDS="autoconf automake bash cacerts libtool" |
al@17914 | 16 |
pascal@24055 | 17 current_version() |
pascal@24055 | 18 { |
pascal@24055 | 19 wget -O - ${WGET_URL%/arch*}/releases 2>/dev/null | \ |
pascal@24055 | 20 sed '/archive.*tar/!d;s|.*/\(.*\).tar.*|\1|;q' |
pascal@24055 | 21 } |
pascal@24055 | 22 |
al@17914 | 23 # Rules to configure and make the package. |
al@17914 | 24 compile_rules() |
al@17914 | 25 { |
al@17914 | 26 autoreconf -i |
al@17914 | 27 automake --foreign -Wall |
Hans-G?nter@21301 | 28 ./configure $CONFIGURE_ARGS && |
Hans-G?nter@21301 | 29 make -j 1 && |
Hans-G?nter@21301 | 30 make install |
al@17914 | 31 } |
al@17914 | 32 |
al@17914 | 33 # Rules to gen a SliTaz package suitable for Tazpkg. |
al@17914 | 34 genpkg_rules() |
al@17914 | 35 { |
al@17914 | 36 mkdir -p $fs/usr/lib |
al@17914 | 37 cp -a $install/usr/lib/*.so* $fs/usr/lib |
al@17914 | 38 } |