wok view libstroke/receipt @ rev 16485

xpaint: need libtool as bdep
author Christophe Lincoln <pankso@slitaz.org>
date Wed Apr 23 04:24:59 2014 +0200 (2014-04-23)
parents 75c155aef05d
children 68f9518c4cb0
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WEB_SITE="http://etla.net/libstroke/"
11 WGET_URL="$WEB_SITE/$TARBALL"
13 DEPENDS=""
14 BUILD_DEPENDS="xorg-libX11-dev"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure --prefix=/usr $CONFIGURE_ARGS &&
21 make && make DESTDIR=$DESTDIR install
22 }
24 # Rules to gen a SliTaz package suitable for Tazpkg.
25 genpkg_rules()
26 {
27 mkdir -p $fs/usr/lib
28 cp -a $install/usr/lib/*.so* $fs/usr/lib
29 }