summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--theos.install3
3 files changed, 7 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0e467631dd1d..5f4ba3888dfb 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = theos-git
pkgdesc = A cross-platform suite of tools for building and deploying software for iOS and other platforms
pkgver = 2.3.r10.g7a9ec0e
- pkgrel = 1
+ pkgrel = 2
url = https://theos.github.io/
+ install = theos.install
arch = any
license = GPL3
depends = perl
diff --git a/PKGBUILD b/PKGBUILD
index ceb2a879209a..00dfa7a82e9d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,7 +2,7 @@
pkgname=theos-git
pkgver=2.3.r10.g7a9ec0e
-pkgrel=1
+pkgrel=2
pkgdesc="A cross-platform suite of tools for building and deploying software for iOS and other platforms"
arch=('any')
url="https://theos.github.io/"
@@ -15,6 +15,7 @@ optdepends=(
)
provides=('theos')
source=("git+https://github.com/theos/theos")
+install=theos.install
sha256sums=('SKIP')
pkgver() {
diff --git a/theos.install b/theos.install
new file mode 100644
index 000000000000..be0b9c4f450e
--- /dev/null
+++ b/theos.install
@@ -0,0 +1,3 @@
+post_install() {
+ echo ">>> Remember to set THEOS=/opt/theos as an environment variable"
+}