diff options
author | David <dbphillipsnz@gmail.com> | 2014-09-28 13:13:17 +1300 |
---|---|---|
committer | David <dbphillipsnz@gmail.com> | 2014-09-28 13:13:17 +1300 |
commit | 1c62e5b82cda581162b2a84e17d7ab551b573219 (patch) | |
tree | 270cddca97cbd278c5bae6c9d34503a259a78a90 /build/PKGBUILD | |
parent | 1c5611894d10dfd434af0a750ad15a9bc01a14f0 (diff) | |
download | paramano-1c62e5b82cda581162b2a84e17d7ab551b573219.tar.xz |
Added ebuild and PKGBUILD for Gentoo and Arch Linux respectively
Diffstat (limited to 'build/PKGBUILD')
-rw-r--r-- | build/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/build/PKGBUILD b/build/PKGBUILD new file mode 100644 index 0000000..b5c4469 --- /dev/null +++ b/build/PKGBUILD @@ -0,0 +1,23 @@ +# Maintainer: David Phillips (aka phillid) <dbphillipsnz at _remove this part if you want_ gmail dot com> + +pkgname=paramano +pkgver=0.60 +pkgrel=1 +pkgdesc="Docking battery monitor and CPU governer controller (fork of trayfreq)" +arch=('i686' 'x86_64' 'armv6h') +url=(https://github.com/phillid/${pkgname}) +license=('GPL') +depends=('gtk3' 'sudo') +makedepends=() +replaces="trayfreq-archlinux" +source=(http://phillid.tk/source/${pkgname}-${pkgver}-${pkgrel}.tar.gz) +sha1sums=('e5d91772a6848567fc9bf511168323331c8af2b1') +backup=('etc/paramano.conf') + +build() { + make --directory=${srcdir}/${pkgname}-stable +} + +package() { + make install DESTDIR=${pkgdir} --directory=${srcdir}/$pkgname-stable +} |