diff options
Diffstat (limited to 'community/xcircuit/PKGBUILD')
-rw-r--r-- | community/xcircuit/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/xcircuit/PKGBUILD b/community/xcircuit/PKGBUILD new file mode 100644 index 000000000..683a6c7ca --- /dev/null +++ b/community/xcircuit/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 88341 2013-04-16 13:32:48Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Maintainer: Giovanni Scafora <linuxmania@gmail.com> +# Contributor: simo <simo@archlinux.org> + +pkgname=xcircuit +pkgver=3.7.48 +pkgrel=1 +pkgdesc="A program for drawing publishable-quality electrical circuit schematic diagrams" +arch=('i686' 'x86_64') +url="http://opencircuitdesign.com/xcircuit" +license=('GPL2') +depends=('tk' 'libxpm' 'zlib') +makedepends=('chrpath') +source=(http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz) +md5sums=('efe537f908b12d30ef1aeebf77222fbf') + +build() { + cd $srcdir/$pkgname-$pkgver + ./configure --prefix=/usr --with-tcl=/usr/lib --with-tk=/usr/lib --mandir=/usr/share/man + make +} + +package() { + cd $srcdir/$pkgname-$pkgver + make DESTDIR=$pkgdir install + mkdir -p $pkgdir/usr/share/man/man1 + mv $pkgdir/usr/lib/xcircuit-3.7/man/* $pkgdir/usr/share/man/man1/ + rm -rf $pkgdir/usr/lib/xcircuit-3.7/man/ + chrpath -d $pkgdir/usr/lib/xcircuit-3.7/xcircexec +} |