From 38a7c090cccf00bd2a6d7635c3c1bb7c4e070377 Mon Sep 17 00:00:00 2001 From: Administrator Date: Fri, 30 May 2025 10:51:37 +0200 Subject: [PATCH] docs: update Linux/Arch/make-package --- Linux/Arch/make-package.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Linux/Arch/make-package.md b/Linux/Arch/make-package.md index 497271b..014dd60 100644 --- a/Linux/Arch/make-package.md +++ b/Linux/Arch/make-package.md @@ -2,7 +2,7 @@ title: Make Package description: Information on how to make arch packages that can be used with pacman published: true -date: 2025-05-30T08:37:35.381Z +date: 2025-05-30T08:51:35.864Z tags: editor: markdown dateCreated: 2025-05-30T08:32:02.401Z @@ -10,4 +10,14 @@ dateCreated: 2025-05-30T08:32:02.401Z # Make Packages -In the root folder a [**PKGBUILD**](https://wiki.archlinux.org/title/PKGBUILD) file as to be created which contains configuration for the package. \ No newline at end of file +In the root folder a [**PKGBUILD**](https://wiki.archlinux.org/title/PKGBUILD) file as to be created which contains configuration for the package. + +``` +myapp/ +├── PKGBUILD +├── src/ ← $srcdir +│ └── unpacked source files here +├── pkg/ ← $pkgdir lives here +│ └── myapp/... +└── myapp-1.0-1-x86_64.pkg.tar.zst ← the final package +```