wok rev 5351

Up: sqlite, sqlite-dev, lemon (3.6.23.1) - I sed out rpath using code from archlinux PKGBUILD of sqlite.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 28 12:32:25 2010 +0000 (2010-04-28)
parents 79fc515af377
children ef1d289e8344
files lemon/receipt sqlite-dev/receipt sqlite/receipt
line diff
     1.1 --- a/lemon/receipt	Wed Apr 28 11:49:21 2010 +0000
     1.2 +++ b/lemon/receipt	Wed Apr 28 12:32:25 2010 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="lemon"
     1.7 -VERSION="3.6.16"
     1.8 +VERSION="3.6.23.1"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="The LEMON Parser Generator (from the SQLite project)."
    1.11  MAINTAINER="pankso@slitaz.org"
     2.1 --- a/sqlite-dev/receipt	Wed Apr 28 11:49:21 2010 +0000
     2.2 +++ b/sqlite-dev/receipt	Wed Apr 28 12:32:25 2010 +0000
     2.3 @@ -1,7 +1,7 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="sqlite-dev"
     2.7 -VERSION="3.6.16"
     2.8 +VERSION="3.6.23.1"
     2.9  CATEGORY="development"
    2.10  SHORT_DESC="Small SQL database engine devel files."
    2.11  MAINTAINER="pankso@slitaz.org"
    2.12 @@ -13,6 +13,6 @@
    2.13  {
    2.14  	mkdir -p $fs/usr/lib
    2.15  	cp -a $_pkg/usr/lib/*.*a $fs/usr/lib
    2.16 -    cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    2.17 -    cp -a $_pkg/usr/include $fs/usr
    2.18 +	cp -a $_pkg/usr/lib/pkgconfig $fs/usr/lib
    2.19 +	cp -a $_pkg/usr/include $fs/usr
    2.20  }
     3.1 --- a/sqlite/receipt	Wed Apr 28 11:49:21 2010 +0000
     3.2 +++ b/sqlite/receipt	Wed Apr 28 12:32:25 2010 +0000
     3.3 @@ -1,11 +1,12 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="sqlite"
     3.7 -VERSION="3.6.16"
     3.8 +VERSION="3.6.23.1"
     3.9  CATEGORY="office"
    3.10  SHORT_DESC="Small SQL database engine."
    3.11  MAINTAINER="pankso@slitaz.org"
    3.12  TARBALL="$PACKAGE-$VERSION.tar.gz"
    3.13 +BUILD_DEPENDS="tcl"
    3.14  WEB_SITE="http://www.sqlite.org/"
    3.15  WGET_URL="http://www.sqlite.org/$TARBALL"
    3.16  
    3.17 @@ -20,6 +21,8 @@
    3.18  		--enable-load-extension \
    3.19  		LDFLAGS=-ldl \
    3.20  		$CONFIGURE_ARGS &&
    3.21 +	sed -i 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' libtool &&
    3.22 +  	sed -i 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g' libtool &&
    3.23  	make &&
    3.24  	make DESTDIR=$PWD/_pkg install
    3.25  }