wok view xcircuit/receipt @ rev 12439

lynx: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Apr 21 17:53:44 2012 +0200 (2012-04-21)
parents 05a5fe342712
children eb8067417980
line source
1 # SliTaz package receipt.
3 PACKAGE="xcircuit"
4 VERSION="3.7.32"
5 CATEGORY="graphics"
6 SHORT_DESC="A program for drawing publishable-quality electrical circuit schematic diagrams"
7 MAINTAINER="slaxemulator@gmail.com"
8 DEPENDS="tcl tk xorg-libXpm zlib"
9 BUILD_DEPENDS="tk-dev tcl-dev xorg-libXpm-dev xorg-libXt-dev zlib-dev automake"
10 TARBALL="$PACKAGE-$VERSION.tgz"
11 WEB_SITE="http://opencircuitdesign.com/xcircuit"
12 WGET_URL="http://opencircuitdesign.com/xcircuit/archive/$TARBALL"
14 # Rules to configure and make the package.
15 compile_rules()
16 {
17 cd $src/$PACKAGE-$VERSION
18 ./configure prefix=/usr \
19 --with-tcl=/usr/lib \
20 --with-tk=/usr/lib \
21 $CONFIGURE_ARGS &&
22 make && make DESTDIR=$DESTDIR install
23 }
25 # Rules to gen a SliTaz package suitable for Tazpkg.
26 genpkg_rules()
27 {
28 mkdir -p $fs/usr/lib
29 cp -a $_pkg/usr/bin $fs/usr
30 cp -a $_pkg/usr/lib/$PACKAGE-${VERSION%.*} $fs/usr/lib
31 }