blob: 28c0bf8ea05b75a7e4cdc1dbfe0fa93947953261 (
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
|
# Maintainer: dr4Ke <dr4ke at dr4ke dot net>
pkgname=cura-resources-fabtotum-git
pkgver=r28.eceb1f9
pkgrel=1
pkgdesc="FabTotum resources for Cura 2.x"
arch=('any')
url="https://github.com/FABtotum/FAB_Configs"
license=('unknown')
depends=('cura')
makedepends=('git')
source=('git+https://github.com/PaoloP74/FAB_Configs.git#branch=Cura_2.7')
md5sums=('SKIP')
# Please refer to the 'USING VCS SOURCES' section of the PKGBUILD man page for
# a description of each element in the source array.
pkgver() {
cd "$srcdir/FAB_Configs"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "$srcdir/FAB_Configs"
cd "Cura2.x_configs_FABtotum/Cura 2.7/resources"
mkdir -p "${pkgdir}/usr/share/cura/resources/"
cp -rp . "${pkgdir}/usr/share/cura/resources/"
}
|