wok annotate glusterfs/receipt @ rev 15659
c_icap: do not start daemon while cooking
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Thu Dec 12 07:48:19 2013 +0000 (2013-12-12) |
parents | 0c6a04728acf |
children | 16df76e1fc6a |
rev | line source |
---|---|
pascal@13230 | 1 # SliTaz package receipt. |
pascal@13230 | 2 |
pascal@13230 | 3 PACKAGE="glusterfs" |
erjo@13537 | 4 VERSION="3.3.1" |
pascal@13230 | 5 CATEGORY="misc" |
pascal@13230 | 6 SHORT_DESC="Distributed file system." |
pascal@13230 | 7 MAINTAINER="pascal.bellard@slitaz.org" |
pascal@15215 | 8 LICENSE="GPL2 LGPL3" |
pascal@13230 | 9 WEB_SITE="http://www.gluster.org/" |
pascal@13230 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
erjo@13537 | 11 WGET_URL="http://bits.gluster.com/pub/gluster/glusterfs/src/$TARBALL" |
pascal@13230 | 12 |
pascal@13230 | 13 DEPENDS="python readline mpc-library elfutils openssl" |
pascal@13230 | 14 BUILD_DEPENDS="flex python readline-dev mpc-library elfutils openssl-dev" |
pascal@13230 | 15 |
pascal@13230 | 16 # Rules to configure and make the package. |
pascal@13230 | 17 compile_rules() |
pascal@13230 | 18 { |
pascal@13230 | 19 cd $src |
pascal@13230 | 20 ./configure --prefix=/usr --infodir=/usr/share/info \ |
pascal@13230 | 21 --libexecdir=/usr/share \ |
pascal@13230 | 22 --mandir=/usr/share/man \ |
pascal@13230 | 23 --sysconfdir=/etc \ |
pascal@13230 | 24 --localstatedir=/var \ |
pascal@13230 | 25 $CONFIGURE_ARGS && |
pascal@13230 | 26 make && |
erjo@13537 | 27 make install |
pascal@13230 | 28 } |
pascal@13230 | 29 |
pascal@13230 | 30 # Rules to gen a SliTaz package suitable for Tazpkg. |
pascal@13230 | 31 genpkg_rules() |
pascal@13230 | 32 { |
pascal@13230 | 33 mkdir -p $fs/usr/share |
erjo@13537 | 34 cp -a $install/etc $fs |
erjo@13537 | 35 cp -a $install/var $fs |
erjo@13537 | 36 cp -a $install/sbin $fs |
erjo@13537 | 37 cp -a $install/usr/sbin $fs/usr |
erjo@13537 | 38 cp -a $install/usr/lib $fs/usr |
erjo@13537 | 39 cp -a $install/usr/share/glusterfs $fs/usr/share |
erjo@13537 | 40 |
erjo@13537 | 41 # Clean-up |
erjo@13537 | 42 find $fs/usr/lib -name "*.*a" -exec rm -f {} \; |
pascal@13230 | 43 } |
erjo@13537 | 44 |