wok-next annotate eina/receipt @ rev 13688
Add mdocml (very light man formatter), mdocml-extra, mdocml-cgi, mdocml-man, mdocml-dev. Now we can use 'mandoc /usr/share/man/man1/xterm.1 | less' to see well formatted manpage, but we still need 'man' wrapper to mandoc to search and page man pages. Cgi and other packages yet not tested at all.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Sun Dec 09 17:07:54 2012 +0000 (2012-12-09) |
parents | cf214eecc1b5 |
children | be976c6bdb4d |
rev | line source |
---|---|
pankso@2916 | 1 # SliTaz package receipt. |
pankso@2916 | 2 |
pankso@2916 | 3 PACKAGE="eina" |
pankso@13633 | 4 VERSION="1.7.1" |
gokhlayeh@8505 | 5 CATEGORY="base-system" |
gokhlayeh@8505 | 6 SHORT_DESC="Enlightenment's data types library (List, hash, etc) in C." |
pankso@2916 | 7 MAINTAINER="pankso@slitaz.org" |
pankso@2916 | 8 TARBALL="$PACKAGE-$VERSION.tar.bz2" |
pankso@2916 | 9 WEB_SITE="http://www.enlightenment.org/" |
gokhlayeh@8505 | 10 WGET_URL="http://download.enlightenment.org/releases/$TARBALL" |
pankso@10622 | 11 TAGS="e17" |
pankso@2916 | 12 |
pankso@9786 | 13 DEPENDS="" |
pankso@10596 | 14 BUILD_DEPENDS="" |
pankso@9786 | 15 |
pankso@2916 | 16 # Rules to configure and make the package. |
pankso@2916 | 17 compile_rules() |
pankso@2916 | 18 { |
pankso@10496 | 19 ./configure \ |
gokhlayeh@8505 | 20 --enable-magic-debug \ |
slaxemulator@10318 | 21 --enable-safety-checks \ |
slaxemulator@10318 | 22 $CONFIGURE_ARGS && \ |
gokhlayeh@8505 | 23 make && make install |
pankso@2916 | 24 } |
pankso@2916 | 25 |
pankso@2916 | 26 # Rules to gen a SliTaz package suitable for Tazpkg. |
pankso@2916 | 27 genpkg_rules() |
pankso@2916 | 28 { |
gokhlayeh@8505 | 29 mkdir -p $fs/usr/lib |
pankso@13633 | 30 cp -a $install/usr/lib/*.so* $fs/usr/lib |
pankso@2916 | 31 } |