diff options
author | davidovski <david@davidovski.xyz> | 2022-02-06 01:48:31 +0000 |
---|---|---|
committer | davidovski <david@davidovski.xyz> | 2022-02-06 01:48:31 +0000 |
commit | fc00950a590d7d4275f68b6a1ecd7ea574b45cdc (patch) | |
tree | b638da1c59bf4d0bdbe40f0a9761e8ea5919d661 /repo/devel/autoconf2.13.xibuild | |
parent | fe67a7873dbf34307043ddc0c1bd00a479049859 (diff) |
removed the . from the filenmae
Diffstat (limited to 'repo/devel/autoconf2.13.xibuild')
-rw-r--r-- | repo/devel/autoconf2.13.xibuild | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/repo/devel/autoconf2.13.xibuild b/repo/devel/autoconf2.13.xibuild deleted file mode 100644 index 3ef6500..0000000 --- a/repo/devel/autoconf2.13.xibuild +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -MAKEDEPS=(make patch) -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 -} |