46 lines
1.3 KiB
Text
46 lines
1.3 KiB
Text
# Template build file for 'libuv'
|
|
pkgname=libuv
|
|
version=0.10.28
|
|
revision=1
|
|
short_desc="Multi-platform support library with a focus on asynchronous I/O"
|
|
maintainer="Enno Boland <eb@s01.de>"
|
|
license="BSD/ISC"
|
|
homepage="http://libuv.org/"
|
|
distfiles="https://github.com/joyent/${pkgname}/archive/v${version}.tar.gz"
|
|
checksum=6a0b711bef08ffa92899c4014114c8d58a8db5740801a00edbdaa4b4613311af
|
|
|
|
do_build() {
|
|
make CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" \
|
|
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
|
|
CPP="$CPP" AS="$AS" OBJDUMP="$OBJDUMP" STRIP="$STRIP"
|
|
}
|
|
do_install() {
|
|
vinstall LICENSE 644 \
|
|
usr/share/licenses/${pkgname}
|
|
vinstall AUTHORS 644 \
|
|
usr/share/doc/${pkgname}
|
|
vinstall README.md 644 \
|
|
usr/share/doc/${pkgname}
|
|
|
|
vinstall include/uv.h 644 usr/include
|
|
vinstall include/uv-private/uv-unix.h 644 \
|
|
usr/include/uv-private
|
|
vinstall include/uv-private/uv-linux.h 644 \
|
|
usr/include/uv-private
|
|
vinstall $FILESDIR/libuv.pc 644 /usr/lib/pkgconfig
|
|
|
|
vinstall libuv.a 644 "usr/lib"
|
|
vinstall libuv.so 644 "usr/lib"
|
|
mv $DESTDIR/usr/lib/libuv.so $DESTDIR/usr/lib/libuv.so.${version%.*}
|
|
ln -sr $DESTDIR/usr/lib/libuv.so.${version%.*} $DESTDIR/usr/lib/libuv.so
|
|
}
|
|
|
|
libuv-devel_package() {
|
|
depends="libuv>=${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.a"
|
|
}
|
|
}
|