blob: ede36819a7b4ad4e7ca0036c8bccb08003cd369c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
pkgname=salome-configuration
pkgver=9.12.0
pkgrel=1
pkgdesc="Salome CMake configuration"
url="https://www.salome-platform.org"
license=('LGPL2+')
depends=()
makedepends=('cmake')
arch=('any')
source=("git+https://git.salome-platform.org/gitpub/tools/configuration.git#tag=V9_12_0")
md5sums=('SKIP')
prepare () {
cd configuration
}
package() {
install -d "${pkgdir}"/usr/share/salome
cp -rv "${srcdir}/configuration" "${pkgdir}"/usr/share/salome
}
|