summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c3cafac4664a4345285105778fd6dc1dce6d648f (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
# Maintainer: fenrig <fenrig.linux at outlook.com>
pkgname=libmtk-git
pkgver=0.1.0.r0.g365e6ee
pkgrel=1
pkgdesc="A library to allow shared object modules to be loaded dynamically into a running PCB plug-in"
arch=('any')
url="https://gitlab.com/soft.at.home/pcb/libmtk.git"
license=('MIT')

depends=(
	'libsahtrace'
	'libpcb'
)
makedepends=(
	'sah_components_config'
	'm4'
	'gcc'
	'make'
)
provides=(
	'libmtk'
	'libmtk-git'
)
conflicts=(
	'libmtk'
	'libmtk-git'
)

gitbranch="master"

source=("${pkgname}::git+https://gitlab.com/soft.at.home/pcb/libmtk.git#branch=${gitbranch}" "components.config")
md5sums=('SKIP' 'SKIP')

pkgver() {
  cd "${pkgname}"
  git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

prepare() {
	sah_components_config
	! mkdir include
	cp -f components.h include/components.h 
}

build() {
	# STAGINGDIR
	export STAGINGDIR=$(pwd)
	cd "${pkgname}"
	make -C pkgconfig clean
	make -C src clean
	make
}

package() {
	cd "${pkgname}"
	make D="${pkgdir}/" install
	mv ${pkgdir}/lib/* ${pkgdir}/usr/lib/
	rm -Rf ${pkgdir}/lib/
}