wok-4.x diff embryo/receipt @ rev 9839
Removed perl-html-entiites. Use perl-html-parser instead.
author | Christopher Rogers <slaxemulator@gmail.com> |
---|---|
date | Sun May 15 14:07:10 2011 +0000 (2011-05-15) |
parents | f99c07c038f7 |
children | 5c7bde556b6a |
line diff
1.1 --- a/embryo/receipt Sun Jan 10 23:07:29 2010 +0100 1.2 +++ b/embryo/receipt Sun May 15 14:07:10 2011 +0000 1.3 @@ -1,26 +1,20 @@ 1.4 # SliTaz package receipt. 1.5 1.6 PACKAGE="embryo" 1.7 -VERSION="0.9.9.063" 1.8 -CATEGORY="x-window" 1.9 -SHORT_DESC="E17 Embryo libs." 1.10 +VERSION="1.0.0" 1.11 +CATEGORY="base-system" 1.12 +SHORT_DESC="Enlightenment's virtual machine engine and bytecode compiler used in Edje." 1.13 MAINTAINER="pankso@slitaz.org" 1.14 -DEPENDS="eet evas ecore" 1.15 +DEPENDS="glibc-base" 1.16 TARBALL="$PACKAGE-$VERSION.tar.bz2" 1.17 WEB_SITE="http://www.enlightenment.org/" 1.18 -WGET_URL="http://download.enlightenment.org/snapshots/2009-12-02/$TARBALL" 1.19 +WGET_URL="http://download.enlightenment.org/releases/$TARBALL" 1.20 1.21 # Rules to configure and make the package. 1.22 compile_rules() 1.23 { 1.24 cd $src 1.25 - ./configure \ 1.26 - --prefix=/usr \ 1.27 - --infodir=/usr/share/info \ 1.28 - --mandir=/usr/share/man \ 1.29 - $CONFIGURE_ARGS && 1.30 - make && 1.31 - make DESTDIR=$PWD/_pkg install 1.32 + ./configure && make && make install 1.33 } 1.34 1.35 # Rules to gen a SliTaz package suitable for Tazpkg. 1.36 @@ -30,13 +24,5 @@ 1.37 cp -a $_pkg/usr/share $fs/usr 1.38 cp -a $_pkg/usr/bin $fs/usr 1.39 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib 1.40 - for i in $fs/usr/lib/*.so ; do 1.41 - [ -L $i ] || continue 1.42 - [ -e $i.0 ] && continue 1.43 - target=$(readlink $i) 1.44 - case "$target" in 1.45 - *.so.0.*) ln -s $target $i.0;; 1.46 - esac 1.47 - done 1.48 } 1.49