Package Details: libindi-eqmod 2.0.1-1

Git Clone URL: https://aur.archlinux.org/libindi-eqmod.git (read-only, click to copy)
Package Base: libindi-eqmod
Description: 3rd party drivers for INDI: EQMod
Upstream URL: http://www.indilib.org/index.php?title=Main_Page
Licenses: GPL3
Submitter: sebo_b
Maintainer: sebo_b (mobarre)
Last Packager: mobarre
Votes: 2
Popularity: 0.000000
First Submitted: 2019-05-27 21:55 (UTC)
Last Updated: 2023-04-24 11:14 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

wadouk commented on 2022-06-29 08:10 (UTC)

To apply with libindi 1.9.6-1

# Maintainer: Marc-Olivier Barre <mobarre-archlinux@snarchi.io>
# Maintainer: Sebastian Baberowski <sebastian@baberowski.com>

pkgname=libindi-eqmod
pkgver=1.9.6
pkgrel=1
pkgdesc="3rd party drivers for INDI: EQMod"
url="http://www.indilib.org/index.php?title=Main_Page"
license=(GPL3)
arch=(i686 x86_64)
depends=(libindi=1.9.6-1)
makedepends=(cmake)
source=("https://github.com/indilib/indi-3rdparty/archive/v${pkgver}.tar.gz")
sha256sums=("2d2f45d54231b941f896df4069df84a339efb5b9b81f2e060422f29e1c900b84")

prepare() {
  mkdir -p build
  cd  indi-3rdparty-${pkgver}

  #set all to off by default
  sed -i -e '/option(WITH_.*On)$/s/ On)$/ Off)/' CMakeLists.txt
}

build() {
  cd build
  cmake -DCMAKE_BUILD_TYPE=Release \
    -DCMAKE_INSTALL_PREFIX=/usr \
    -DWITH_EQMOD=On \
    ../indi-3rdparty-${pkgver}
  make
}

package() {
  cd build
  make DESTDIR="$pkgdir" install
}

sebo_b commented on 2021-09-22 20:14 (UTC)

@wgauvin thanks for pointing it out

wgauvin commented on 2021-09-18 08:02 (UTC)

Note, that due to PowerOne being added the sed command in the PKGBUILD needs to be changed.

sed -i -e '/option(WITH_.*On/s/ On)/ Off)/' CMakeLists.txt

(note the ) after the On and Off

sebo_b commented on 2020-09-02 11:41 (UTC)

Hi

I've just updated packages to v1.8.6. It compiles for me without gmock installed, so I'm keeping dependencies as they are.

Cheers, /S

gromain commented on 2020-09-02 00:08 (UTC)

Hello,

gmock should be added as dependency.

Thanks for packaging this!