diff options
author | davidovski <david@davidovski.xyz> | 2021-10-06 20:32:41 +0100 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2021-10-06 20:32:41 +0100 |
commit | beb0e949f6189884cd31fdf0f95e5d35be6a2a93 (patch) | |
tree | 7edae8055d72e2b7afae4d333302f61d7090b110 /repo/core/automake.xibuild | |
parent | 0cb5ed4e60d3453c0b2ee9a153afa96c9bd3dd0c (diff) |
added more core packages
Diffstat (limited to 'repo/core/automake.xibuild')
-rw-r--r-- | repo/core/automake.xibuild | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/repo/core/automake.xibuild b/repo/core/automake.xibuild new file mode 100644 index 0000000..eaccbae --- /dev/null +++ b/repo/core/automake.xibuild @@ -0,0 +1,13 @@ +#!/bin/bash + +DEPS=(perl bash) + +SOURCE=https://ftp.gnu.org/gnu/automake/automake-1.16.5.tar.xz +DESC="A GNU tool for automatically creating Makefiles" + +build () { + ./configure --prefix=/usr -docdir=/usr/share/doc/automake-1.16.5 + make + make -j4 check + make DESTDIR=$PKG_DEST install +} |