summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 1dd80d518fa5ced9094c03b00328e9e680b7ac31 (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
# 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: nbebaw
pkgname=boostchanger-git
pkgver=4.0
pkgrel=3
pkgdesc="Control your CPU Turbo Boost with this App"
arch=('any')
url="https://github.com/nbebaw/boostchanger"
license=('MIT')
makedepends=('git' 'wget' 'unzip')
source=("https://github.com/nbebaw/boostchanger/releases/download/v$pkgver.$pkgrel/boostchanger-$pkgver.$pkgrel.zip")
md5sums=('SKIP')

prepare() {
	pkgverold=4.0.2
	rm -rf ${pkgdir}/opt/boostchanger-$pkgverold
	unzip -d boostchanger-$pkgver.$pkgrel boostchanger-$pkgver.$pkgrel.zip 
}

package() {
	mkdir -p ${pkgdir}/opt
	cp -r boostchanger-$pkgver.$pkgrel ${pkgdir}/opt
	wget https://github.com/nbebaw/boostchanger/archive/v$pkgver.$pkgrel.zip
	unzip v$pkgver.$pkgrel.zip
	install -Dm755 boostchanger-$pkgver.$pkgrel/build/boostchanger.sh ${pkgdir}/usr/bin/boostchanger
	install -Dm644 boostchanger-$pkgver.$pkgrel/build/boostchanger.desktop ${pkgdir}/usr/share/applications/boostchanger.desktop
	install -Dm644 boostchanger-$pkgver.$pkgrel/build/icon.png ${pkgdir}/usr/share/pixmaps/boostchanger.png
	rm -rf boostchanger-$pkgver.$pkgrel
	rm v$pkgver.$pkgrel.zip
}