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 +```