wok-current view xcircuit/receipt @ rev 10489
pidgin-libnotify: update bdeps (again)
| author | Pascal Bellard <pascal.bellard@slitaz.org> | 
|---|---|
| date | Wed May 25 13:05:43 2011 +0200 (2011-05-25) | 
| parents | 620e179d9d9e | 
| children | b7319995b37e | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="xcircuit"
     4 VERSION="3.6.163"
     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 	sed -i 's|am__api_version="1.9"|am__api_version="1.11"|' configure
    19 	./configure prefix=/usr \
    20 		--with-tcl=/usr/lib \
    21 		--with-tk=/usr/lib &&
    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 }