diff options
author | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:38:20 (GMT) |
---|---|---|
committer | James Meyer <james.meyer@operamail.com> | 2009-03-14 18:38:20 (GMT) |
commit | 75a974500de1bb4b0bb84b726a9d7075d07e18b7 (patch) | |
tree | 9a0c45226e4b04a8595fbacfcde115d444f5c5d5 /abs/core-testing/autoconf/autoconf.install | |
parent | 14beb839185f027cba412b6aa0941296a843818b (diff) | |
download | linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.zip linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.tar.gz linhes_pkgbuild-75a974500de1bb4b0bb84b726a9d7075d07e18b7.tar.bz2 |
Removing more cross repo makedepends.
Moved the following packages from extra->core.
nasm
automake
autoconf
sharutils
imake
gperf/
yasm/
setuptools/
libcaca/
libdca/
live-media/
There are still several cross repo make depends, but some packages just dont' belong in core.
For instance avahi and ca-certificates(core) depend on mono and ruby(extra). But really mono and ruby do not belong in core.
Diffstat (limited to 'abs/core-testing/autoconf/autoconf.install')
-rw-r--r-- | abs/core-testing/autoconf/autoconf.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/abs/core-testing/autoconf/autoconf.install b/abs/core-testing/autoconf/autoconf.install new file mode 100644 index 0000000..6440ec6 --- /dev/null +++ b/abs/core-testing/autoconf/autoconf.install @@ -0,0 +1,20 @@ +infodir=/usr/share/info +filelist=(autoconf.info) + +post_install() { + for file in ${filelist[@]}; do + install-info $infodir/$file $infodir/dir 2> /dev/null + done +} + +post_upgrade() { + post_install $1 +} + +pre_remove() { + for file in ${filelist[@]}; do + install-info --delete $infodir/$file $infodir/dir 2> /dev/null + done +} + +# vim:set ts=2 sw=2 et: |