wok-next annotate libuv/receipt @ rev 21469

updated tinc (1.0.25 -> 1.0.36)
author Hans-G?nter Theisgen
date Wed May 13 07:41:00 2020 +0100 (2020-05-13)
parents 7c5d038be95b
children
rev   line source
al@20936 1 # SliTaz package receipt v2.
al@20936 2
al@20936 3 PACKAGE="libuv"
al@21153 4 VERSION="1.25.0"
al@20936 5 CATEGORY="libs"
al@20936 6 SHORT_DESC="Cross-platform asychronous I/O"
al@20936 7 MAINTAINER="al.bobylev@gmail.com"
al@20936 8 LICENSE="MIT"
al@20936 9 WEB_SITE="https://libuv.org/"
al@20936 10 LFS="http://www.linuxfromscratch.org/blfs/view/svn/general/libuv.html"
al@20936 11
al@20936 12 TARBALL="$PACKAGE-v$VERSION.tar.gz"
al@20936 13 WGET_URL="https://dist.libuv.org/dist/v$VERSION/$TARBALL"
al@21153 14 TARBALL_SHA1="e735c6070801d2af0bde43e8d9f7993519ffcaf9"
al@20936 15
al@20936 16 BUILD_DEPENDS="automake libtool libnsl-dev"
al@21020 17 SPLIT="$PACKAGE-dev"
al@20936 18
al@21085 19 DEPENDS_std="libnsl"
al@21085 20
al@20936 21 compile_rules() {
al@20936 22 ./autogen.sh &&
al@20936 23 ./configure \
al@20936 24 --disable-static \
al@20936 25 $CONFIGURE_ARGS &&
al@21085 26 fix libtool &&
al@20936 27 make &&
al@20936 28 make install
al@20936 29 }