summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Brennan2017-06-09 14:17:32 -0400
committerStephen Brennan2017-06-09 14:17:32 -0400
commit7e88e51add984176a1b62e8f4567fb9e014a2ace (patch)
treea7b2aaa436cf6682c976e54dbca2cc4a22ec7c6d
parent5c3e39a2f39d54636134bc393f868835c06bc985 (diff)
downloadaur-alien-console.tar.gz
Correct the license.
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 7 insertions, 5 deletions
diff --git a/.SRCINFO b/.SRCINFO
index e45e413ffc1e..a35d4eab1562 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,12 @@
# Generated by mksrcinfo v8
-# Fri Jun 9 18:12:27 UTC 2017
+# Fri Jun 9 18:17:21 UTC 2017
pkgbase = alien-console
pkgdesc = A ncurses based clone of the Alien: Isolation console interfaces.
pkgver = 1.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/brenns10/alien-console
arch = x86_64
- license = GPL
+ license = BSD
depends = ncurses
optdepends = alsa-utils: for aplay sound support
source = https://github.com/brenns10/alien-console/archive/v1.0.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index a27130a09da6..06779e07f497 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,11 +1,11 @@
# Maintainer: Stephen Brennan <stephen@brennan.io>
pkgname=alien-console
pkgver=1.0
-pkgrel=1
+pkgrel=2
pkgdesc="A ncurses based clone of the Alien: Isolation console interfaces."
arch=('x86_64')
url="https://github.com/brenns10/alien-console"
-license=('GPL')
+license=('BSD')
depends=('ncurses')
optdepends=('alsa-utils: for aplay sound support')
source=("https://github.com/brenns10/$pkgname/archive/v$pkgver.tar.gz")
@@ -21,4 +21,6 @@ package() {
install -Dvm755 "$pkgname" "$pkgdir/usr/bin/$pkgname"
mkdir -p "$pkgdir/usr/share/$pkgname"
install -Dvm644 etc/* "$pkgdir/usr/share/$pkgname"
+ mkdir -p "$pkgdir/usr/share/licenses/alien-console"
+ install -Dvm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/"
}