summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Dray2015-09-07 11:46:26 +1000
committerJustin Dray2015-09-07 11:46:26 +1000
commitf86615c7cfa573f53f21b66fdbb2fd11443bac7f (patch)
treea43d8fc01b687594630526eaa857c913057678cf
parent64f884b72dbc9a7188b59394ec99a812e089b394 (diff)
downloadaur-f86615c7cfa573f53f21b66fdbb2fd11443bac7f.tar.gz
Added post-install notification to enable docker service
-rw-r--r--PKGBUILD3
-rw-r--r--dmakepkg.install5
2 files changed, 7 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index b2754cd6003f..5b42fe5e8e03 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Justin Dray <justin@dray.be>
pkgname=dmakepkg-git
-pkgver=r16.177fd14
+pkgver=r20.c4dee8c
pkgrel=1
pkgdesc='Makepkg running from within docker for clean builds without maintaining a chroot'
arch=('any')
@@ -9,6 +9,7 @@ url="https://github.com/justin8/docker-makepkg"
license=('MIT')
depends=('docker')
options=(!emptydirs)
+install='dmakepkg.install'
source=(git+https://github.com/justin8/docker-makepkg.git)
md5sums=('SKIP')
diff --git a/dmakepkg.install b/dmakepkg.install
new file mode 100644
index 000000000000..aa3818cc9309
--- /dev/null
+++ b/dmakepkg.install
@@ -0,0 +1,5 @@
+post_install () {
+ cat <<-EOF
+ Don't forget to start/enable docker service for dmakepkg to work.
+ EOF
+}