summaryrefslogtreecommitdiff
path: root/Attic/copy_local_packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'Attic/copy_local_packages.sh')
-rwxr-xr-xAttic/copy_local_packages.sh35
1 files changed, 0 insertions, 35 deletions
diff --git a/Attic/copy_local_packages.sh b/Attic/copy_local_packages.sh
deleted file mode 100755
index 776d74a..0000000
--- a/Attic/copy_local_packages.sh
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-
-rm -rf {core,extra,community}/os/x86_64/
-mkdir -p {core,extra,community}/os/x86_64/
-
-for p in `cat archiso/arch/pkglist.x86_64.txt`; do
- case $p in
- core/*)
- pkgname=`echo $p | cut -f 2 -d /`
- if test -f /var/cache/pacman/pkg/$pkgname*x86_64.pkg.tar.xz; then
- cp /var/cache/pacman/pkg/$pkgname*x86_64.pkg.tar.xz core/os/x86_64/.
- fi
- if test -f /var/cache/pacman/pkg/$pkgname*any.pkg.tar.xz; then
- cp /var/cache/pacman/pkg/$pkgname*any.pkg.tar.xz core/os/x86_64/.
- fi
- ;;
- esac
-done
-
-ADDITIONAL_PKGS="libunistring-0.9.3-6 ntp-4.2.7.p441-1 joe-3.7-4 git-1.9.2-1 perl-error-0.17022-1 libxml2-2.9.1-5"
-for pkgname in $ADDITIONAL_PKGS; do
- if test -f /var/cache/pacman/pkg/$pkgname*x86_64.pkg.tar.xz; then
- cp /var/cache/pacman/pkg/$pkgname*x86_64.pkg.tar.xz core/os/x86_64/.
- fi
- if test -f /var/cache/pacman/pkg/$pkgname*any.pkg.tar.xz; then
- cp /var/cache/pacman/pkg/$pkgname*any.pkg.tar.xz core/os/x86_64/.
- fi
-done
-
-repo-add -n core/os/x86_64/core.db.tar.gz core/os/x86_64/*
-ln -fs core.db.tar.gz core/os/x86_64/core.db
-tar zcvfT extra/os/x86_64/extra.db.tar.gz /dev/null
-ln -fs extra.db.tar.gz extra/os/x86_64/extra.db
-tar zcvfT community/os/x86_64/community.db.tar.gz /dev/null
-ln -fs community.db.tar.gz community/os/x86_64/community.db