summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 4831f890e828654d8ac095591f6096b65dfafb83 (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
pkgname=python2-fmm
arch=(x86_64)
pkgver=0.1.1
pkgrel=1
url=https://github.com/cyang-kth/fmm
source=(https://github.com/cyang-kth/fmm/archive/refs/tags/v$pkgver.tar.gz)
md5sums=('5c2837a5cdf56214920c14d320fd2fe9')
makedepends=( cmake python2 boost swig )
depends=( boost-libs python-gdal gdal )

build() {
    cd fmm-${pkgver}
    patch -r -s -p0 < ../../corrections.patch
    cd ..

    cmake -B build -S "fmm-${pkgver}" \
        -DCMAKE_BUILD_TYPE='None' \
        -DCMAKE_INSTALL_PREFIX='/usr' \
        -Wno-dev
    make -C build 
}

package() {
	make -C build DESTDIR="$pkgdir/" install
}