Add 'gammastep-git/' from commit 'e4dc54fd798bbfd8f8f4c7208b26b4565038794b'
git-subtree-dir: gammastep-git git-subtree-mainline:cc694fe5b4
git-subtree-split:e4dc54fd79
This commit is contained in:
commit
358e531a6a
2 changed files with 66 additions and 0 deletions
23
gammastep-git/.SRCINFO
Normal file
23
gammastep-git/.SRCINFO
Normal file
|
@ -0,0 +1,23 @@
|
|||
pkgbase = gammastep-git
|
||||
pkgdesc = Adjusts the color temperature of your screen according to your surroundings.
|
||||
pkgver = 1.12.r37.ge3ddf54
|
||||
pkgrel = 1
|
||||
url = https://github.com/CameronNemo/redshift
|
||||
arch = x86_64
|
||||
license = GPL3
|
||||
makedepends = intltool
|
||||
makedepends = python
|
||||
makedepends = git
|
||||
depends = glib2
|
||||
depends = wayland
|
||||
depends = libdrm
|
||||
depends = libxxf86vm
|
||||
depends = geoclue
|
||||
optdepends = python-gobject: for gammastep-indicator
|
||||
optdepends = python-xdg: for gammastep-indicator
|
||||
optdepends = gtk3: for gammastep-indicator
|
||||
source = git+https://github.com/CameronNemo/redshift
|
||||
md5sums = SKIP
|
||||
|
||||
pkgname = gammastep-git
|
||||
|
43
gammastep-git/PKGBUILD
Normal file
43
gammastep-git/PKGBUILD
Normal file
|
@ -0,0 +1,43 @@
|
|||
# Maintainer: Carlo Teubner <carlo at cteubner dot net>
|
||||
# Contributor: Brett Cornwall <ainola@archlinux.org>
|
||||
# Contributor: Andrey Solomatin
|
||||
# Contributor: carstene1ns
|
||||
# Contributor: Lukas Fleischer
|
||||
# Contributor: Geoffrey Teale
|
||||
# Contributor: Mark, Huo Mian
|
||||
# Contributor: Biginoz
|
||||
# Contributor: Mattias Andrée
|
||||
|
||||
pkgname=gammastep-git
|
||||
pkgver=1.12.r37.ge3ddf54
|
||||
pkgrel=1
|
||||
pkgdesc="Adjusts the color temperature of your screen according to your surroundings."
|
||||
arch=('x86_64')
|
||||
url="https://github.com/CameronNemo/redshift"
|
||||
license=('GPL3')
|
||||
depends=('glib2' 'wayland' 'libdrm' 'libxxf86vm' 'geoclue')
|
||||
optdepends=('python-gobject: for gammastep-indicator'
|
||||
'python-xdg: for gammastep-indicator'
|
||||
'gtk3: for gammastep-indicator')
|
||||
makedepends=('intltool' 'python' 'git')
|
||||
source=("git+https://github.com/CameronNemo/redshift")
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "$srcdir/redshift"
|
||||
git describe --tags | sed 's/^v//;s/-/.r/;s/-/./'
|
||||
}
|
||||
|
||||
build() {
|
||||
cd "$srcdir/redshift"
|
||||
./bootstrap
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/redshift"
|
||||
make DESTDIR="$pkgdir" install
|
||||
}
|
||||
|
||||
# vim:set ts=2 sw=2 et:
|
Loading…
Reference in a new issue