wok-next diff hdf5/receipt @ rev 13538
Add python-ooop
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Fri Oct 26 13:09:58 2012 +0200 (2012-10-26) |
parents | |
children | 9132288a78f4 |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/hdf5/receipt Fri Oct 26 13:09:58 2012 +0200 1.3 @@ -0,0 +1,31 @@ 1.4 +# SliTaz package receipt. 1.5 + 1.6 +PACKAGE="hdf5" 1.7 +VERSION="1.8.9" 1.8 +CATEGORY="misc" 1.9 +SHORT_DESC="a data model, library, and file format for storing and managing data." 1.10 +MAINTAINER="pascal.bellard@slitaz.org" 1.11 +WEB_SITE="http://www.hdfgroup.org/HDF5" 1.12 +TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.13 +WGET_URL="http://www.hdfgroup.org/ftp/HDF5/current/src/$TARBALL" 1.14 + 1.15 +DEPENDS="zlib" 1.16 +BUILD_DEPENDS="cmake szip zlib-dev" 1.17 + 1.18 +# Rules to configure and make the package. 1.19 +compile_rules() 1.20 +{ 1.21 + cd $src 1.22 + sed -i 's/Using_CMake.txt/USING_CMake.txt/' CmakeLists.txt 1.23 + ./configure $CONFIGURE_ARGS && 1.24 + make all && make DESTDIR=$DESTDIR install 1.25 +} 1.26 + 1.27 +# Rules to gen a SliTaz package suitable for Tazpkg. 1.28 +genpkg_rules() 1.29 +{ 1.30 + mkdir -p $fs/usr 1.31 + cp -a $install/usr/bin $fs/usr 1.32 + cp -a $install/usr/lib $fs/usr 1.33 + rm -f $fs/usr/lib/*a 1.34 +}