wok-next diff libtool/receipt @ rev 21114
startup-notification: redesign
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sat Jan 12 15:31:59 2019 +0200 (2019-01-12) |
parents | d5aab818505e |
children |
line diff
1.1 --- a/libtool/receipt Fri Nov 02 14:15:08 2018 +0200 1.2 +++ b/libtool/receipt Sat Jan 12 15:31:59 2019 +0200 1.3 @@ -11,28 +11,24 @@ 1.4 1.5 TARBALL="$PACKAGE-$VERSION.tar.xz" 1.6 WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL" 1.7 +TARBALL_SHA1="3e7504b832eb2dd23170c91b6af72e15b56eb94e" 1.8 1.9 BUILD_DEPENDS="automake autoconf gfortran" 1.10 SPLIT="libltdl $PACKAGE" 1.11 1.12 +COPY_libltdl="*.so*" 1.13 +COPY_std="@std @dev @rm" 1.14 + 1.15 +DEPENDS_libltdl="glibc-base" 1.16 +DEPENDS_std="libltdl automake autoconf" 1.17 + 1.18 +CAT_libltdl="system-tools|library" 1.19 + 1.20 +TAGS_std="LFS" 1.21 + 1.22 compile_rules() { 1.23 ./configure $CONFIGURE_ARGS && 1.24 fix libtool && 1.25 make && 1.26 make install 1.27 } 1.28 - 1.29 -genpkg_rules() { 1.30 - case $PACKAGE in 1.31 - libltdl) 1.32 - copy *.so* 1.33 - CAT="system-tools|library" 1.34 - DEPENDS="glibc-base" 1.35 - ;; 1.36 - libtool) 1.37 - copy @std @dev @rm 1.38 - DEPENDS="libltdl automake autoconf" 1.39 - TAGS="LFS" 1.40 - ;; 1.41 - esac 1.42 -}