summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ccc90a28b349b45f1ebec2fe1d1598afd4c828f2 (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
# Maintainer: Alex Szczuczko <alex@szc.ca>
# Contributor: Marcelo Alaniz <malaniz@code4life.com.ar>
# Contributor: Peter Wu <peter@lekensteyn.nl>

pkgname=nusmv
_pkgname=NuSMV
pkgver=2.6.0
pkgrel=4
pkgdesc="A new symbolic model checker"
arch=('i686' 'x86_64')
url="http://nusmv.fbk.eu/index.html"
license=('LGPL2.1')
depends=('libxml2')
makedepends=('cmake' 'python2' 'ghostscript' 'texlive-latexextra' 'doxygen')
optdepends=('perl: for scripts in /usr/share/nusmv/contrib/')
source=("http://nusmv.fbk.eu/distrib/${_pkgname}-${pkgver}.tar.gz"
        "cmake.patch"
        "cudd-waitstatus.patch")
sha256sums=('dba953ed6e69965a68cd4992f9cdac6c449a3d15bf60d200f704d3a02e4bbcbb'
            '7bc96f6a87b2c8a8b931d4ce17a5d49a5decf468b612165d4385753906fc1103'
            '0abb360d7856809461f75d4e4ba7ba34bc62b40efed256acbca67b0757d66e77')


prepare() {
    cd "$srcdir/$_pkgname-$pkgver"

    # Have to expose HAVE_UNISTD_H and others to avoid implicit func warnings.
    patch -Np1 -i "${srcdir}/cmake.patch"

    # "union wait" (BSD compat?) was removed in cudd 2.5.0
    patch -Np1 -i "${srcdir}/cudd-waitstatus.patch"

    # Fix "error: expected unqualified-id before user-defined string literal"
    sed 's/extern "C"void/extern "C" void/' MiniSat/MiniSat_v*.patch -i
}

build() {
    cd "$srcdir/$_pkgname-$pkgver/$_pkgname"

    mkdir build
    cd build
    cmake .. -DPYTHON_EXECUTABLE=/bin/python2 -DCMAKE_INSTALL_PREFIX=/usr -Wno-dev
    make

    # For some reason the cmake makefiles don't call this, leading to an error
    # at install time.
    pushd doc/prog-man
    doxygen doxygen_nusmv_html.conf
    popd
}

package() {
    cd "$srcdir/$_pkgname-$pkgver/$_pkgname/build"

    make DESTDIR="$pkgdir/" install
    find "$pkgdir" -type f -name "*.a" -print0 | xargs -0 rm

    # Lowercase symlink
    ln -s "/usr/bin/NuSMV" "$pkgdir/usr/bin/$pkgname"
}