blob: d0dd8d6b18b1f026103594181c64819a946240b4 (
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
73
74
75
76
77
78
79
80
|
# 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.681
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'
'zlib'
'bash'
'libx11'
)
makedepends=(
'git'
'gcc'
'make'
'tcsh'
'python'
#'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-pass-LDFLAGS.patch"
)
b2sums=('460a576ec2093b56ed6a56ee7831a260a86d303780404a690dd8719629fb2025743d60b9cc6fa4eafce016730b86c47fe8108f2ad9c276b3fc341851b2deafd3'
'702bca8c771c100b050379970a40f141edfd93a16e9f321aa50c2815de5b9c3204f2141af071ed90696d8b317691893027950aa74661927643d02cbb7615ef88')
options=()
prepare() {
cd "${pkgname}"
# Disable the legacy malloc/free APIs that are not
# thread safe... This might introduce new bugs :)
# TODO: Consider setting this by default?
# sed -i 's/#FEATURE_FLAGS/FEATURE_FLAGS/g' scripts/defs.mak.in
# Patch to pass makepkg.conf LDFLAGS
patch -Np1 < ../"0001-pass-LDFLAGS.patch"
}
build() {
# 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"
# Make build directory and run configure
export CFLAGS="${CFLAGS} -std=c17 -D_DEFAULT_SOURCE=1"
(
mkdir build
cd build
../"${pkgname}"/configure --prefix=/usr
)
# build
make -C build
}
package() {
make -C build DESTDIR="$pkgdir" MANDIR=/usr/share/man install
# License
install -Dm644 -t "${pkgdir}/usr/share/licenses/${pkgname}/" ${pkgname}/LICENSE
# Avoid name collision
mv "$pkgdir/usr/share/man/man1/extcheck.1" "$pkgdir/usr/share/man/man1/extcheck-magic.1"
}
|