diff options
Diffstat (limited to 'testing/fancontroled/APKBUILD')
-rw-r--r-- | testing/fancontroled/APKBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/fancontroled/APKBUILD b/testing/fancontroled/APKBUILD new file mode 100644 index 0000000000..30890d39c2 --- /dev/null +++ b/testing/fancontroled/APKBUILD @@ -0,0 +1,40 @@ +# Contributor: Natanael Copa <ncopa@alpinelinux.org> +# Maintainer: Natanael Copa <ncopa@alpinelinux.org> +pkgname=fancontroled +pkgver=0.1 +pkgrel=0 +pkgdesc="a temperature dependent fan speed control" +url="http://fancontroled.lukaperkov.net/" +arch="all" +license="GPLv3" +depends="" +makedepends="lm_sensors-dev" +install="" +subpackages="" +source="http://code.lukaperkov.net/fancontroled/fancontroled-$pkgver.tar + link.patch" + +_builddir="$srcdir"/fancontroled-$pkgver +prepare() { + local i + cd "$_builddir" + for i in $source; do + case $i in + *.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;; + esac + done +} + +build() { + cd "$_builddir" + make || return 1 +} + +package() { + cd "$_builddir" + mkdir -p "$pkgdir"/usr/sbin + make install DESTDIR="$pkgdir" || return 1 +} + +md5sums="8c3a7efa99e58216ad4633d1e6ed1358 fancontroled-0.1.tar +099a824ba948f1f01da8d374024357fd link.patch" |