wok view libstroke/receipt @ rev 10794

lostirc: use irc.freenode.net for slitaz IRC chan
author Christophe Lincoln <pankso@slitaz.org>
date Fri Jun 03 03:13:13 2011 +0200 (2011-06-03)
parents 4b19610a23d8
children 75c155aef05d
line source
1 # SliTaz package receipt.
3 PACKAGE="libstroke"
4 VERSION="0.5.1"
5 CATEGORY="system-tools"
6 SHORT_DESC="Stroke translation library"
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS=""
9 BUILD_DEPENDS="xorg-dev"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WEB_SITE="http://etla.net/libstroke/"
12 WGET_URL="$WEB_SITE/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src
18 ./configure --prefix=/usr &&
19 make && make DESTDIR=$PWD/_pkg install
20 }
22 # Rules to gen a SliTaz package suitable for Tazpkg.
23 genpkg_rules()
24 {
25 mkdir -p $fs/usr/lib
26 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
27 }