docs: update Linux/Arch/make-package

This commit is contained in:
Lukas Forsberg 2025-05-30 16:01:43 +02:00 committed by Lukas Forsberg
parent 709ddfe3f9
commit 438df5d03d

View File

@ -2,7 +2,7 @@
title: Make Package title: Make Package
description: Information on how to make arch packages that can be used with pacman description: Information on how to make arch packages that can be used with pacman
published: true published: true
date: 2025-05-30T13:57:24.603Z date: 2025-05-30T14:01:42.038Z
tags: tags:
editor: markdown editor: markdown
dateCreated: 2025-05-30T08:32:02.401Z dateCreated: 2025-05-30T08:32:02.401Z
@ -31,14 +31,14 @@ myapp/
# Connect Client to Custom Repo # Connect Client to Custom Repo
Create the file Create the file
/etc/pacman.d/customrepo.conf /etc/pacman.d/homerepo.conf
``` ```
[customrepo] [homerepo]
Server = http://192.168.1.101:3015/archrepo/x86_64 Server = http://192.168.1.101:3015/archrepo/x86_64
``` ```
Then include in /etc/pacman.conf Then include in /etc/pacman.conf
``` ```
Include = /etc/pacman.d/customrepo.conf Include = /etc/pacman.d/homerepo.conf
``` ```