blob: 3dfdd3853be7593a4f458bdf5543cf87e576862f (
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Maintainer: Torleif Skår <torleif.skaar AT gmail DOT com>
# Contributor: Kyle Keen <keenerd@gmail.com>
# Contributor: Jared Casper <jaredcasper@gmail.com>
pkgname=magic
pkgver=8.3.590
pkgrel=1
pkgdesc="A VLSI layout system"
_git_url="https://github.com/RTimothyEdwards/magic"
url="http://opencircuitdesign.com/magic/"
arch=('i686' 'x86_64')
license=('LicenseRef-Custom')
depends=(
'glibc'
'tcl'
'tk'
'libx11'
'zlib'
'python'
'bash'
)
makedepends=(
'git'
'gcc'
'make'
'tcsh'
#'ghostscript'
)
optdepends=(
'libgl: OpenGL for performant 2D graphics, needs "glu" as well'
'glu: Vector fonts for OpenGL renderer'
'cairo: 2D accelerated graphics, alternative to OGL'
'blt: to create a tree diagram of the cell hierarchy in a design'
)
source=(
"${pkgname}::git+${_git_url}#tag=${pkgver}"
"0001-fixup-magsgtty.patch"
)
b2sums=('a8f56d40d8d8e9076aa139696b0a09ce1b38820c422c643273af2292b9a5a85d4418f8491aeae8e041190ddf83bd221bec9445ff60133d6fdd2577c23ac4c4b9'
'72d1a9742c72041204c05aca45639251ab49768c43b1829bc40e6f0857fd93c0a7e32e433a0090996e17af1fc588e26677c24487bf04d5a14a86c8f5e4a2402c')
options=()
prepare() {
cd "${pkgname}"
# To compile with Glibc v2.42 we need to patch magsgtty
# See: https://github.com/RTimothyEdwards/magic/issues/434
patch -Np1 < "../0001-fixup-magsgtty.patch"
}
build() {
cd "${pkgname}"
# See upstream issue: https://github.com/RTimothyEdwards/magic/issues/401
# for more details about why we need to use C17
export CFLAGS="${CFLAGS} -std=c17 -D_DEFAULT_SOURCE=1"
./configure --prefix=/usr
make
}
package() {
cd "${pkgname}"
make DESTDIR="$pkgdir" MANDIR=/usr/share/man install
# License
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" LICENSE
# Avoid name collision
mv "$pkgdir/usr/share/man/man1/extcheck.1" "$pkgdir/usr/share/man/man1/extcheck-magic.1"
}
|