summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hello/PKGBUILD5
1 files changed, 3 insertions, 2 deletions
diff --git a/hello/PKGBUILD b/hello/PKGBUILD
index 266e293..e6a3fa8 100644
--- a/hello/PKGBUILD
+++ b/hello/PKGBUILD
@@ -10,6 +10,7 @@ arch=('x86_64')
url='https://www.gnu.org/software/hello/'
# We use static linking, so it includes the Glibc (GPL, LGPL) as well.
license=('GPL' 'LGPL' 'GPL3')
+makedepends=('podman')
source=("https://ftp.gnu.org/gnu/hello/${pkgname}-${pkgver}.tar.gz"{,.sig}
'Dockerfile'
'GPL.txt'
@@ -31,8 +32,8 @@ build(){
./configure --prefix=/ LDFLAGS=-static
make
- sudo docker build --tag=hello .
- sudo docker save -o hello.tar hello
+ sudo podman build --tag=hello .
+ sudo podman save -o hello.tar hello
sudo chmod 777 hello.tar
sudo chown "$(id -u):$(id -g)" hello.tar
xz -f -9e --verbose -T 0 hello.tar