blob: 3f57583e6cc559c830da8ce309150d5588c562f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# Maintainer: envolution
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
# Contributor: Giovanni Scafora <linuxmania@gmail.com>
# Contributor: simo <simo@archlinux.org>
pkgname=xcircuit
pkgver=3.10.30
pkgrel=3
pkgdesc="A program for drawing publishable-quality electrical circuit schematic diagrams"
arch=('x86_64')
url="http://opencircuitdesign.com/xcircuit"
license=('GPL2')
depends=('tk' 'libxpm' 'zlib' 'cairo')
makedepends=('chrpath' 'imagemagick')
source=("http://opencircuitdesign.com/xcircuit/archive/$pkgname-$pkgver.tgz"
"xcircuit.desktop"
"http://opencircuitdesign.com/xcircuit/xcicon_sm.gif"
7f57ebbf.patch
0001-Declare-UDrawXAt-in-prototypes.h.patch
)
sha256sums=('b2f63cba605e79cc2a08714bf3888f7be7174384ed724db3c70f8bf25c36f554'
'3c29f55ee6196b554d6fc5791f29ac7cab2fecc184c699e80ee265be0b609456'
'8e7b132d9803443e6f3ae65ed1990362a5a977e7856b1e54f2edf8cd4a3d7259'
'5f56153f37fa7764148e498e17542388fa4fe6a3ba3af3c4f87f370cf41c4973'
'657fc92268c570bdf10b2d1fdf1072f3d292dca534c6b2f43176445707555f4b')
prepare() {
cd $pkgname-$pkgver
patch -p1 < ../7f57ebbf.patch # Fix build with -Wformat-security
patch -p1 < ../0001-Declare-UDrawXAt-in-prototypes.h.patch
}
build() {
cd "$srcdir/$pkgname-$pkgver"
./configure \
--prefix=/usr \
--mandir=/usr/share/man \
--with-cairo \
--with-tcl=/usr/lib \
--with-tk=/usr/lib
make ACLOCAL=aclocal AUTOMAKE=automake
}
package() {
_pkgver=${pkgver%.*}
cd "$srcdir"
install -Dm0644 xcircuit.desktop "$pkgdir/usr/share/applications/xcircuit.desktop"
cd "$pkgname-$pkgver"
make DESTDIR="$pkgdir" install
mkdir -p "$pkgdir/usr/share/man/man1"
mv "$pkgdir/usr/lib/xcircuit-${_pkgver}/man/"* "$pkgdir/usr/share/man/man1/"
rm -rf "$pkgdir/usr/lib/xcircuit-${_pkgver}/man/"
chrpath -d "$pkgdir/usr/lib/xcircuit-${_pkgver}/xcircexec"
convert +set date:create +set date:modify ../xcicon_sm.gif xcircuit.png
install -Dm0644 xcircuit.png "$pkgdir/usr/share/icons/xcircuit.png"
}
|