diff options
author | Erich Eckner <git@eckner.net> | 2019-07-16 13:11:09 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-08-22 11:18:40 +0200 |
commit | e41d95eebfcaddd19e316963b5959b60f483077e (patch) | |
tree | 5157cc1ca4064ed9568938182052045e22ac1993 | |
parent | 4a534feddafa22951f14604766a0ee251468b1f3 (diff) | |
download | devtools32-e41d95eebfcaddd19e316963b5959b60f483077e.tar.xz |
generate archlinuxewe build commands and configs
-rw-r--r-- | Makefile | 36 |
1 files changed, 35 insertions, 1 deletions
@@ -47,6 +47,10 @@ GENERATED_CONFIGFILES = \ pacman-gnome-unstable-i486.conf \ pacman-gnome-unstable-i686.conf \ pacman-gnome-unstable-pentium4.conf \ + pacman-archlinuxewe-armv6h.conf \ + pacman-archlinuxewe-i486.conf \ + pacman-archlinuxewe-i686.conf \ + pacman-archlinuxewe-pentium4.conf \ makepkg-armv6h.conf \ makepkg-i486.conf \ makepkg-i686.conf \ @@ -62,6 +66,7 @@ CONFIGFILES = \ pacman-multilib-staging.conf \ pacman-kde-unstable.conf \ pacman-gnome-unstable.conf \ + pacman-archlinuxewe.conf \ $(GENERATED_CONFIGFILES) COMMITPKG_LINKS = \ @@ -108,7 +113,12 @@ ARCHBUILD_LINKS = \ gnome-unstable-i486-build \ gnome-unstable-i686-build \ gnome-unstable-pentium4-build \ - gnome-unstable-x86_64-build + gnome-unstable-x86_64-build \ + archlinuxewe-armv6h-build \ + archlinuxewe-i486-build \ + archlinuxewe-i686-build \ + archlinuxewe-pentium4-build \ + archlinuxewe-x86_64-build CROSSREPOMOVE_LINKS = \ extra2community \ @@ -153,6 +163,30 @@ makepkg-pentium4.conf: makepkg-i686.conf @echo "GEN $@" @sed '/^CHOST=/ ! s,\(["=]\)i686\([-" ]\),\1pentium4\2,g' "$<" > "$@" +pacman-archlinuxewe-i486.conf: pacman-archlinuxewe.conf + @echo "GEN $@" + @sed " \ + s,/mirrorlist\$$,\032,; \ + /\[\(community-\)\?testing\]/{ N; s/#//g; }; \ + /^Architecture = / s/^.*\$$/Architecture = i486/; \ + " "$<" > "$@" + +pacman-archlinuxewe-i686.conf: pacman-archlinuxewe.conf + @echo "GEN $@" + @sed " \ + s,/mirrorlist\$$,\032,; \ + /\[\(community-\)\?testing\]/{ N; s/#//g; }; \ + /^Architecture = / s/^.*\$$/Architecture = i686/; \ + " "$<" > "$@" + +pacman-archlinuxewe-pentium4.conf: pacman-archlinuxewe.conf + @echo "GEN $@" + @sed " \ + s,/mirrorlist\$$,\032,; \ + /\[\(community-\)\?testing\]/{ N; s/#//g; }; \ + /^Architecture = / s/^.*\$$/Architecture = pentium4/; \ + " "$<" > "$@" + pacman-%-armv6h.conf: pacman-%.conf @echo "GEN $@" @sed " \ |