wok-next diff libaal/receipt @ rev 20348

ploticus (2.42)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Nov 18 17:19:51 2017 +0100 (2017-11-18)
parents 6c3718ca17b6
children 0ec6086e21d6
line diff
     1.1 --- a/libaal/receipt	Sat Nov 09 17:34:23 2013 +0000
     1.2 +++ b/libaal/receipt	Sat Nov 18 17:19:51 2017 +0100
     1.3 @@ -1,29 +1,31 @@
     1.4 -# SliTaz package receipt.
     1.5 +# SliTaz package receipt v2.
     1.6  
     1.7  PACKAGE="libaal"
     1.8 -VERSION="1.0.5"
     1.9 +VERSION="1.0.6"
    1.10  CATEGORY="system-tools"
    1.11 -SHORT_DESC="Application abstraction library."
    1.12 +SHORT_DESC="Application abstraction library"
    1.13  MAINTAINER="pascal.bellard@slitaz.org"
    1.14  LICENSE="GPL"
    1.15 -TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.16 -WEB_SITE="http://www.kernel.org/"
    1.17 -WGET_URL="http://www.kernel.org/pub/linux/utils/fs/reiser4/$PACKAGE/$TARBALL"
    1.18 +WEB_SITE="https://reiser4.wiki.kernel.org/index.php/Reiser4progs"
    1.19 +
    1.20 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.21 +#WGET_URL="http://www.kernel.org/pub/linux/utils/fs/reiser4/libaal/$TARBALL" # historical, now empty
    1.22 +WGET_URL="$SF_MIRROR/reiser4/$TARBALL"
    1.23 +
    1.24 +SPLIT="libaal-dev"
    1.25  
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29 -	cd $src
    1.30 -	./configure --prefix=/usr --infodir=/usr/share/info \
    1.31 -	--mandir=/usr/share/man $CONFIGURE_ARGS &&
    1.32 -	make &&
    1.33 -	make DESTDIR=$DESTDIR install
    1.34 +	./configure $CONFIGURE_ARGS && make && make install
    1.35  }
    1.36  
    1.37  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.38  genpkg_rules()
    1.39  {
    1.40 -	mkdir -p $fs/usr/lib
    1.41 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.42 +	case $PACKAGE in
    1.43 +		libaal) copy @std;;
    1.44 +		*-dev)  copy @dev;;
    1.45 +	esac
    1.46  }
    1.47