summaryrefslogtreecommitdiff
path: root/copy_local_packages.sh
diff options
context:
space:
mode:
Diffstat (limited to 'copy_local_packages.sh')
-rwxr-xr-xcopy_local_packages.sh35
1 files changed, 35 insertions, 0 deletions
diff --git a/copy_local_packages.sh b/copy_local_packages.sh
new file mode 100755
index 0000000..6764c1c
--- /dev/null
+++ b/copy_local_packages.sh
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+rm -rf core/os/x86_64/
+mkdir -p core/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"
+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 core/os/x86_64/core.db.tar.gz core/os/x86_64/*
+ln -s core.db.tar.gz core/os/x86_64/core.db
+tar zcvfT extra/os/x86_64/extra.db.tar.gz /dev/null
+ln -s extra.db.tar.gz extra/os/x86_64/extra.db
+tar zcvfT community/os/x86_64/community.db.tar.gz /dev/null
+ln -s community.db.tar.gz community/os/x86_64/community.db