diff options
author | Britney Fransen <brfransen@gmail.com> | 2025-10-01 02:39:59 (GMT) |
---|---|---|
committer | Britney Fransen <brfransen@gmail.com> | 2025-10-01 02:39:59 (GMT) |
commit | 6c87dfbc2005b08da0c079ada39016a47c31729b (patch) | |
tree | dfc9fe966953c3e845dd20459d033628fa2a33a9 /linhes | |
parent | 5a6cc72b57c4801bd2aa36e0bffaee288f6d2109 (diff) | |
download | linhes_pkgbuild-6c87dfbc2005b08da0c079ada39016a47c31729b.zip linhes_pkgbuild-6c87dfbc2005b08da0c079ada39016a47c31729b.tar.gz linhes_pkgbuild-6c87dfbc2005b08da0c079ada39016a47c31729b.tar.bz2 |
linhes-dev: lh_setup_dev.sh: add makepkg.conf options
Diffstat (limited to 'linhes')
-rwxr-xr-x | linhes/linhes-dev/lh_setup_dev.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/linhes/linhes-dev/lh_setup_dev.sh b/linhes/linhes-dev/lh_setup_dev.sh index f0cc94c..a6aedc2 100755 --- a/linhes/linhes-dev/lh_setup_dev.sh +++ b/linhes/linhes-dev/lh_setup_dev.sh @@ -13,6 +13,7 @@ mkdir -p /data/dev/pkg_repo/src_packages/linhes-testing echo -e "\n\nChanging setting in /etc/makepkg.conf..." #sudo sed -i 's/#PKGDEST=.*/PKGDEST=\/data\/dev\/pkg_repo\/packages/' /etc/makepkg.conf +sudo sed -i 's/OPTIONS=.*/OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge !debug lto)/' /etc/makepkg.conf sudo sed -i 's/#SRCDEST=.*/SRCDEST=\/data\/dev\/pkg_repo\/sources/' /etc/makepkg.conf sudo sed -i 's/#SRCPKGDEST=.*/SRCPKGDEST=\/data\/dev\/pkg_repo\/src_packages/' /etc/makepkg.conf sudo sed -i 's/#PACKAGER=.*/PACKAGER=\"LinHESDev <LinHESDev\@linhes.org>\"/' /etc/makepkg.conf @@ -73,5 +74,5 @@ fi # linhes.org. This involves creating a public ssh key and supplying it to # one of the linhes.org admins. The key is created using ssh-keygen. The # resulting public key will be stored in .ssh/id_rsa.pub. -echo -e "\n\nCheckout the repo manually. You will need to be given a dev account on linhes.org. This involves creating a public ssh key and supplying it toone of the linhes.org admins. The key is created using ssh-keygen. The resulting public key will be stored in .ssh/id_rsa.pub." -echo -e "EXAMPLE: \ncd /data/dev\ngit clone git@linhes.org:linhes_pkgbuild\ngit checkout testing\n\n" +echo -e "\n\nCheckout the repo manually. You will need to be given a dev account on linhes.org. This involves creating a public ssh key and supplying it to one of the linhes.org admins. The key is created using ssh-keygen. The resulting public key will be stored in .ssh/id_rsa.pub." +echo -e "EXAMPLE: \ncd /data/dev\ngit clone git@linhes.org:linhes_pkgbuild\ncd ./linhes_pkgbuild\ngit checkout testing\n\n" |