Last active
October 15, 2020 22:49
-
-
Save SpotlightKid/93c9970ebd62469938110a04a379b95d to your computer and use it in GitHub Desktop.
Updated PKGBUILD for kicad-packages3d-git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Maintainer: Frederic Van Assche <[email protected]> | |
# Contributor: Christopher Arndt <aur -at- chrisarndt -dot- de> | |
_pkgname=kicad-packages3d | |
pkgname="${_pkgname}-git" | |
pkgver=r2020.10.06.27d653ce | |
pkgrel=1 | |
pkgdesc="KiCad component 3D model libraries from the official git repo" | |
arch=('any') | |
url="https://github.com/KiCad/kicad-packages3D" | |
license=('GPL') | |
options=('!strip') | |
makedepends=('cmake' 'git') | |
conflicts=('kicad-library-bzr' 'kicad-library-git' 'kicad-library-3d' 'kicad-library' 'kicad-packages' 'kicad-packages3d') | |
provides=('kicad-packages3d') | |
source=("${_pkgname}::git+https://gitlab.com/kicad/libraries/kicad-packages3D") | |
md5sums=('SKIP') | |
pkgver() { | |
cd "${srcdir}/${_pkgname}" | |
_DATE=$(date -d @`git log -1 --format="%at"` --rfc-3339='date') | |
printf "r%s.%s" "${_DATE//-/.}" "$(git rev-parse --short HEAD)" | |
} | |
build() { | |
cd "$srcdir/${_pkgname}" | |
mkdir -p build | |
cd build | |
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr | |
} | |
package() { | |
cd "$srcdir/${_pkgname}/build" | |
make DESTDIR="${pkgdir}/" install | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment