wok annotate glusterfs/receipt @ rev 22636

updated dciutil (0.8.6 -> 0.9.8)
author Hans-G?nter Theisgen
date Mon Jan 13 16:25:30 2020 +0100 (2020-01-13)
parents a78610b2eb47
children 544e47246b33
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@20669 9 WEB_SITE="https://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 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@13230 20 --libexecdir=/usr/share \
pascal@13230 21 --mandir=/usr/share/man \
pascal@13230 22 --sysconfdir=/etc \
pascal@13230 23 --localstatedir=/var \
pascal@13230 24 $CONFIGURE_ARGS &&
pascal@13230 25 make &&
pascal@22349 26 make -j 1 install
pascal@13230 27 }
pascal@13230 28
pascal@13230 29 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@13230 30 genpkg_rules()
pascal@13230 31 {
pascal@13230 32 mkdir -p $fs/usr/share
erjo@13537 33 cp -a $install/etc $fs
erjo@13537 34 cp -a $install/var $fs
erjo@13537 35 cp -a $install/sbin $fs
erjo@13537 36 cp -a $install/usr/sbin $fs/usr
erjo@13537 37 cp -a $install/usr/lib $fs/usr
erjo@13537 38 cp -a $install/usr/share/glusterfs $fs/usr/share
al@18077 39
erjo@13537 40 # Clean-up
erjo@13537 41 find $fs/usr/lib -name "*.*a" -exec rm -f {} \;
pascal@13230 42 }