diff --git a/autoconf/build.sh b/autoconf/build.sh new file mode 100755 index 0000000..8a96329 --- /dev/null +++ b/autoconf/build.sh @@ -0,0 +1,61 @@ +#!/bin/bash +# +# This is a generic build.sh script +# It can be used nearly unmodified with many packages +# +# build.sh helper functions +. ${BUILDPKG_BASE}/scripts/build.sh.functions +# +########################################################### +# Check the following 4 variables before running the script +topdir=autoconf +version=2.62 +pkgver=1 +source[0]=$topdir-$version.tar.bz2 +# If there are no patches, simply comment this +#patch[0]= + +# Source function library +. ${BUILDPKG_BASE}/scripts/buildpkg.functions + +reg prep +prep() +{ + generic_prep +} + +reg build +build() +{ + generic_build +} + +reg check +check() +{ + generic_check +} + +reg install +install() +{ + generic_install DESTDIR + doc ChangeLog NEWS README COPYING TODO THANKS BUGS AUTHORS +} + +reg pack +pack() +{ + generic_pack +} + +reg distclean +distclean() +{ + clean distclean +} + +################################################### +# No need to look below here +################################################### +build_sh $* diff --git a/autoconf/meta/depend b/autoconf/meta/depend new file mode 100644 index 0000000..4af0d2f --- /dev/null +++ b/autoconf/meta/depend @@ -0,0 +1 @@ +TGCac TGCm4 auto diff --git a/autoconf/meta/pkgdef b/autoconf/meta/pkgdef new file mode 100644 index 0000000..a4a0441 --- /dev/null +++ b/autoconf/meta/pkgdef @@ -0,0 +1,14 @@ +[autoconf] +pkgname="${pkgprefix}ac" +name="$topdir - GNU autoconf" +pkgcat="application" +pkgvendor="http://www.gnu.org/software/autoconf/" +shortdesc="Produces shell scripts which automatically configure source code" +pkgver="$pkgver" +files(-,root,bin) +default_docs +$_bindir +$_mandir +$_infodir +$_sharedir/autoconf + diff --git a/autoconf/meta/relnotes b/autoconf/meta/relnotes new file mode 100644 index 0000000..bd83629 --- /dev/null +++ b/autoconf/meta/relnotes @@ -0,0 +1,27 @@ +PACKAGE DETAILS +--------------- +Name: %%PKGNAME%% +Version: %%SOURCE_AND_VER%% +Vendor: %%VENDOR%% +Packager: %%PKGEDBY%% + +Source (sha1sum): +%%SOURCE_SHA1SUM%% + +BUILD DETAILS +------------- +Compiler: +%%COMPILER%% + +Environment: +%%ENVIRONMENT%% + +Configure: +%%CONFIGURE%% + +KNOWN DEPENDENCIES +------------------ +%%DEPENDENCIES%% + +ERRORS/MISCELLANEOUS +--------------------