wok-6.x annotate ecore/receipt @ rev 1605
Add perl-spreadsheet-writeexcel
author | Pascal Bellard <pascal.bellard@slitaz.org> |
---|---|
date | Sun Oct 19 11:13:52 2008 +0000 (2008-10-19) |
parents | cf22fee17710 |
children | ef8afc61d324 |
rev | line source |
---|---|
pankso@140 | 1 # SliTaz package receipt. |
pankso@140 | 2 |
pankso@140 | 3 PACKAGE="ecore" |
pankso@155 | 4 VERSION="0.9.9.042" |
pankso@211 | 5 CATEGORY="x-window" |
pankso@140 | 6 SHORT_DESC="E17 core libs." |
pankso@140 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@140 | 8 DEPENDS="eet evas" |
pascal@1491 | 9 BUILD_DEPENDS="xorg-dev eet-dev evas-dev" |
pankso@140 | 10 TARBALL="$PACKAGE-$VERSION.tar.gz" |
pankso@140 | 11 WEB_SITE="http://www.enlightenment.org/" |
pankso@155 | 12 WGET_URL="http://download.enlightenment.org/snapshots/2008-01-25/$TARBALL" |
pankso@140 | 13 |
pankso@140 | 14 # Rules to configure and make the package. |
pankso@140 | 15 compile_rules() |
pankso@140 | 16 { |
pankso@140 | 17 cd $src |
pankso@140 | 18 ./configure --enable-ecore-config --prefix=/usr --infodir=/usr/share/info \ |
pascal@1491 | 19 --mandir=/usr/share/man $CONFIGURE_ARGS && |
pascal@1491 | 20 make && |
pankso@140 | 21 make DESTDIR=$PWD/_pkg install |
pankso@140 | 22 } |
pankso@140 | 23 |
pankso@140 | 24 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@140 | 25 genpkg_rules() |
pankso@140 | 26 { |
pankso@140 | 27 mkdir -p $fs/usr/lib |
pankso@140 | 28 cp -a $_pkg/usr/bin $fs/usr |
pankso@140 | 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib |
pankso@140 | 30 strip -s $fs/usr/bin/* |
pankso@140 | 31 strip --strip-unneeded $fs/usr/lib/* 2>/dev/null |
pankso@140 | 32 } |
pankso@140 | 33 |