diff options
author | davidovski <david@davidovski.xyz> | 2022-02-03 01:06:29 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-03 01:06:29 +0000 |
commit | d0f791c604ad50304e821ac0aa98a183c7be9890 (patch) | |
tree | d8b900b2e01243835d0d983348a3dc8adbd57f78 /repo/devel/autoconf2.13.xibuild | |
parent | 5f6bd1078b20823e7382ade77e34d65e9c365772 (diff) |
added lvm and autoconf for js78 and polkit
Diffstat (limited to 'repo/devel/autoconf2.13.xibuild')
-rw-r--r-- | repo/devel/autoconf2.13.xibuild | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/repo/devel/autoconf2.13.xibuild b/repo/devel/autoconf2.13.xibuild new file mode 100644 index 0000000..b164c16 --- /dev/null +++ b/repo/devel/autoconf2.13.xibuild @@ -0,0 +1,30 @@ +#!/bin/bash + +MAKEDEPS=(make) +DEPS=(perl) + +PKG_VER=2.13 +SOURCE=https://ftp.gnu.org/gnu/autoconf/autoconf-$PKG_VER.tar.gz +ADDITIONAL=( + https://www.linuxfromscratch.org/patches/blfs/svn/autoconf-$PKG_VER-consolidated_fixes-1.patch + ) + +DESC="GNU programs for producing shell scripts that can automatically configure source code, legacy $PKG_VER version" + +prepare() { + patch -Np1 -i autoconf-2.13-consolidated_fixes-1.patch && + mv -v autoconf.texi autoconf213.texi && + rm -v autoconf.info + +} + +build () { + ./configure --prefix=/usr --program-suffix=$PKG_VER && + make +} + +package () { + make DESTDIR=$PKG_DEST install + install -v -m644 autoconf213.info $PKG_DEST/usr/share/info && + install-info --info-dir=$PKG_DEST/usr/share/info autoconf213.info +} |