diff options
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | DEPENDENCIES | 3 | ||||
-rw-r--r-- | dist/archlinux/stable/PKGBUILD | 26 |
3 files changed, 32 insertions, 0 deletions
@@ -1,4 +1,7 @@ _/ +/dist/*/*/* +!/dist/archlinux/*/PKGBUILD +!/dist/archlinux/*/nightshift.install bin/ obj/ __pycache__/ diff --git a/DEPENDENCIES b/DEPENDENCIES index 23c729c..39d4e38 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -7,4 +7,7 @@ RUNTIME DEPENDENCIES: MAKE DEPENDENCIES: auto-auto-complete (opt-out) + make + zip + coreutils diff --git a/dist/archlinux/stable/PKGBUILD b/dist/archlinux/stable/PKGBUILD new file mode 100644 index 0000000..b2195e1 --- /dev/null +++ b/dist/archlinux/stable/PKGBUILD @@ -0,0 +1,26 @@ +# Maintainer: Mattias Andrée <`base64 -d`(bWFhbmRyZWUK)@member.fsf.org> + +pkgname=nightshift +pkgver=0.1 +pkgrel=1 +pkgdesc="A terminal user interface for redshift" +arch=(any) +url="https://github.com/maandree/nightshift" +license=('GPL3') +depends=(python3 redshift linux) +makedepends=(make coreutils zip auto-auto-complete) +source=($url/archive/$pkgver.tar.gz) +sha256sums=(3e1803bbb14aab2ff9c4882bd5c72e8de8700252d5b0a20a0080497373dee264) + + +build() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr +} + + +package() { + cd "$srcdir/$pkgname-$pkgver" + make PREFIX=/usr DESTDIR="$pkgdir" install +} + |