summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 48577ad43837e7ea37441febac6cd271d3cd84c1 (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
81
# Maintainer:  Dimitris Kiziridis <ragouel at outlook dot com>
# Contributor: Franck Lucien Duriez <franck.lucien.duriez@gmail.com>

pkgname=openpose
pkgver=1.7.0
pkgrel=4
pkgdesc='OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation'
arch=('x86_64')
url='https://github.com/CMU-Perceptual-Computing-Lab/openpose'
license=("ACADEMIC OR NON-PROFIT ORGANIZATION NONCOMMERCIAL RESEARCH USE ONLY")
depends=('caffe-cuda' 'libgl' 'glu' 'glut' 'qt6-base')
makedepends=('cmake' 'doxygen' 'graphviz' 'wget' 'boost')
source=("${url}/archive/v${pkgver}.tar.gz"
        "0001-Update-GLUT_LIBRARY-to-GLUT_LIBRARIES.patch")
md5sums=('178876507c11dab3da2fcd68c748d90b'
         '9c0247d59a9c281499f07dbec6201130')

prepare() {
  mkdir -p openpose-$pkgver
  cd openpose-$pkgver
  find ./ -name "*.hpp" | xargs -n1 sed -i "s|models/|/usr/lib/OpenPose/models/|g"

  patch -d "." -Np1 -i "${srcdir}/0001-Update-GLUT_LIBRARY-to-GLUT_LIBRARIES.patch"
}

build() {
  cd "${pkgname}-${pkgver}"
  mkdir -p build
  cd build
  cmake \
    -DCMAKE_BUILD_TYPE:STRING="Release" \
    -DBUILD_CAFFE:BOOL=OFF \
    -DBUILD_EXAMPLES:BOOL=ON \
    -DBUILD_DOCS:BOOL=ON \
    -DBUILD_SHARED_LIBS:BOOL=ON \
    -DDOWNLOAD_BODY_25_MODEL:BOOL=ON \
    -DDOWNLOAD_BODY_COCO_MODEL:BOOL=ON \
    -DDOWNLOAD_BODY_MPI_MODEL:BOOL=ON \
    -DDOWNLOAD_FACE_MODEL:BOOL=ON \
    -DDOWNLOAD_HAND_MODEL:BOOL=ON \
    -DGPU_MODE:STRING=CPU_ONLY \
    -DWITH_3D_RENDERER:BOOL=ON \
    -DCaffe_INCLUDE_DIRS:PATH="/usr/include" \
    -DCaffe_LIBS:PATH="/usr/lib/libcaffe.so" \
    -DCMAKE_INSTALL_PREFIX:PATH="${pkgdir}/usr" \
    ..
  make -j28
}

package() {
  # Install libraries
  cd "${pkgname}-${pkgver}/build"
  make install

  # Install the examples
  _destdir="${pkgdir}/usr/share/OpenPose/examples"
  mkdir -p "${_destdir}"
  find "./examples" -type f -executable \
    -not -path './examples/tests/*' \
    -not -path './examples/openpose/*' \
    -exec install -D -m755 '{}' "${_destdir}" ';'

  # Install main executable
  _destdir="${pkgdir}/usr/bin"
  mkdir -p "${_destdir}"
  install -D -m755 \
    "./examples/openpose/openpose.bin" \
    "${_destdir}/openpose"
  cd ..

  # Install documentation
  _destdir="${pkgdir}/usr/share/doc/OpenPose"
  mkdir -p "$(dirname "${_destdir}")"
  cp -r "./doc/doxygen/html" "${_destdir}"
  find "${_destdir}" -type f -exec chmod 644 '{}' ';'

  # Install the models
  _destdir="${pkgdir}/usr/lib/OpenPose"
  cp -r "models" "${_destdir}"
  find "${_destdir}" -type f -exec chmod 644 '{}' ';'
}