summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 20f68e0faca38d94d24dde227e5d8b66f4afd417 (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
# This is an example PKGBUILD file. Use this as a start to creating your own,
# and remove these comments. For more information, see 'man PKGBUILD'.
# NOTE: Please fill out the license field for your package! If it is unknown,
# then please put 'unknown'.

# Maintainer: Your Name <youremail@domain.com>
pkgname=cpumanager-git
pkgver=2.1.r0.g059c46c
pkgrel=1
#epoch=
pkgdesc="CPU controler"
arch=('any')
url="https://github.com/nbebaw/cpumanager-git"
license=('GPL')
#groups=()
depends=(zenity)
#makedepends=()
#checkdepends=()
#optdepends=()
#provides=()
#conflicts=()
#replaces=()
#backup=()
#options=()
#install=
#changelog=
source=("git+https://github.com/nbebaw/cpumanager-git.git")
#noextract=()
md5sums=('SKIP')
#validpgpkeys=()

pkgver() {
  cd "$pkgname"
  # cutting off 'foo-' prefix that presents in the git tag
  git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}

#prepare() {
#	cd "$pkgname-$pkgver"
#	patch -p1 -i "$srcdir/$pkgname-$pkgver.patch"
#}

#build() {
#	cd "$pkgname-$pkgver"
#	./configure --prefix=/usr
#	make
#}

#check() {
#	cd "$pkgname-$pkgver"
#	make -k check
#}

package() {
	cd "$pkgname"
	#make DESTDIR="$pkgdir/" install
	install -Dm755 turbo_boost_v2.1.sh ${pkgdir}/usr/bin/turbo_boost_v2.1  # -> /usr/bin/turbo... 
}