Difference between revisions of "Create Manjaro Packages"

Marked this version for translation
m (added languages and translate tags)
(Marked this version for translation)
 
Line 2: Line 2:
__TOC__
__TOC__
<translate>
<translate>
=Guidelines for creating Manjaro packages=
=Guidelines for creating Manjaro packages= <!--T:1-->


<!--T:2-->
This article aims to assist users creating their own packages using Manjaro optimized devtools, also for submission in Manjaro binary repositories. It covers creation of a [[PKGBUILD]], a package build description file sourced by {{ic|makepkg}} to create a binary package from source. If already in possession of a {{ic|PKGBUILD}} (see [[makepkg]]). For instructions regarding existing rules and ways to improve package quality see [[Manjaro Packaging Standards]].
This article aims to assist users creating their own packages using Manjaro optimized devtools, also for submission in Manjaro binary repositories. It covers creation of a [[PKGBUILD]], a package build description file sourced by {{ic|makepkg}} to create a binary package from source. If already in possession of a {{ic|PKGBUILD}} (see [[makepkg]]). For instructions regarding existing rules and ways to improve package quality see [[Manjaro Packaging Standards]].


== Overview ==  
== Overview == <!--T:3-->


<!--T:4-->
Packages in Manjaro Linux are built using the [[makepkg]] utility and the information stored in a [[PKGBUILD]] file. When {{ic|makepkg}} is run, it searches for a {{ic|PKGBUILD}} in the current directory and follows the instructions therein to either compile or otherwise acquire the required files to be packaged within a package file ({{ic|pkgname.pkg.tar.xz}}). The resulting package contains binary files and installation instructions; readily installed with [[pacman]].
Packages in Manjaro Linux are built using the [[makepkg]] utility and the information stored in a [[PKGBUILD]] file. When {{ic|makepkg}} is run, it searches for a {{ic|PKGBUILD}} in the current directory and follows the instructions therein to either compile or otherwise acquire the required files to be packaged within a package file ({{ic|pkgname.pkg.tar.xz}}). The resulting package contains binary files and installation instructions; readily installed with [[pacman]].


<!--T:5-->
An Manjaro package is no more than a tar archive, or 'tarball', compressed using xz, which contains the following files generated by makepkg:
An Manjaro package is no more than a tar archive, or 'tarball', compressed using xz, which contains the following files generated by makepkg:


<!--T:6-->
* The binary files to install.
* The binary files to install.
* {{ic|.PKGINFO}}: contains all the metadata needed by pacman to deal with packages, dependencies, etc.
* {{ic|.PKGINFO}}: contains all the metadata needed by pacman to deal with packages, dependencies, etc.
Line 18: Line 22:
* {{ic|.Changelog}}: an optional file kept by the package maintainer documenting the changes of the package. (It is not present in all packages.)
* {{ic|.Changelog}}: an optional file kept by the package maintainer documenting the changes of the package. (It is not present in all packages.)


== Preparation ==
== Preparation == <!--T:7-->


===Prerequisite software===
===Prerequisite software=== <!--T:8-->


<!--T:9-->
First ensure that the necessary tools are installed. The package group '''base-devel''' should be sufficient; it includes '''make''' and additional tools needed for compiling from source.
First ensure that the necessary tools are installed. The package group '''base-devel''' should be sufficient; it includes '''make''' and additional tools needed for compiling from source.


  # pacman -S base-devel
  <!--T:10-->
# pacman -S base-devel


<!--T:11-->
One of the key tools for building packages is [[makepkg]] (provided by [[pacman]]) which does the following:
One of the key tools for building packages is [[makepkg]] (provided by [[pacman]]) which does the following:
#Checks if package dependencies are installed.
#Checks if package dependencies are installed.
Line 36: Line 43:
#Stores the package file in the configured destination directory, which is the present working directory by default.
#Stores the package file in the configured destination directory, which is the present working directory by default.


=== Download and test the installation ===
=== Download and test the installation === <!--T:12-->


<!--T:13-->
Download the source tarball of the software you want to package, extract it, and follow the author's steps to install the program.  Make a note of all commands and/or steps needed to compile and install it. You will be repeating those same commands in the ''PKGBUILD'' file.
Download the source tarball of the software you want to package, extract it, and follow the author's steps to install the program.  Make a note of all commands and/or steps needed to compile and install it. You will be repeating those same commands in the ''PKGBUILD'' file.


<!--T:14-->
Most software authors stick to the 3-step build cycle:
Most software authors stick to the 3-step build cycle:


  ./configure
  <!--T:15-->
./configure
  make
  make
  make install
  make install


<!--T:16-->
This is a good time to make sure the program is working correctly.
This is a good time to make sure the program is working correctly.


== Creating a PKGBUILD ==
== Creating a PKGBUILD == <!--T:17-->


<!--T:18-->
When you run {{ic|makepkg}}, it will look for a {{ic|PKGBUILD}} file in the present working directory. If a {{ic|PKGBUILD}} file is found it will download the software's source code and compile it according to the instructions specified in the {{ic|PKGBUILD}} file. The instructions must be fully interpretable by the [[Wikipedia:Bash_(Unix_shell)|Bash]] shell. After successful completion, the resulting binaries and metadata of the package (package version and dependencies,) are packed in a {{ic|pkgname.pkg.tar.xz}} package file that can be installed with {{ic|pacman -U ''<package file>''}}.
When you run {{ic|makepkg}}, it will look for a {{ic|PKGBUILD}} file in the present working directory. If a {{ic|PKGBUILD}} file is found it will download the software's source code and compile it according to the instructions specified in the {{ic|PKGBUILD}} file. The instructions must be fully interpretable by the [[Wikipedia:Bash_(Unix_shell)|Bash]] shell. After successful completion, the resulting binaries and metadata of the package (package version and dependencies,) are packed in a {{ic|pkgname.pkg.tar.xz}} package file that can be installed with {{ic|pacman -U ''<package file>''}}.


<!--T:19-->
To begin with a new package, you should first create an empty working directory, (preferably {{ic|~/abs/'''pkgname'''}}), change into that directory, and create a {{ic|PKGBUILD}} file.  You can either copy the prototype PKGBUILD {{ic|/usr/share/pacman/PKGBUILD.proto}} to your working directory or copy a {{ic|PKGBUILD}} from a similar package. The latter may be useful if you only need to change a few options.
To begin with a new package, you should first create an empty working directory, (preferably {{ic|~/abs/'''pkgname'''}}), change into that directory, and create a {{ic|PKGBUILD}} file.  You can either copy the prototype PKGBUILD {{ic|/usr/share/pacman/PKGBUILD.proto}} to your working directory or copy a {{ic|PKGBUILD}} from a similar package. The latter may be useful if you only need to change a few options.


=== Defining PKGBUILD variables ===
=== Defining PKGBUILD variables === <!--T:20-->


<!--T:21-->
Example PKGBUILDs are located in {{Ic|/usr/share/pacman/}}. An explanation of possible {{ic|PKGBUILD}} variables can be found in the [[PKGBUILD]] article.
Example PKGBUILDs are located in {{Ic|/usr/share/pacman/}}. An explanation of possible {{ic|PKGBUILD}} variables can be found in the [[PKGBUILD]] article.


<!--T:22-->
''makepkg'' defines three variables that you should use as part of the build and install process:
''makepkg'' defines three variables that you should use as part of the build and install process:
; {{ic|startdir}}: This contains the absolute path to the directory where the {{ic|PKGBUILD}} file is located. This variable used to be used in combination with {{ic|/src}} or {{ic|/pkg}} postfixes, but the use of {{ic|srcdir}} and {{ic|pkgdir}} variables is the modern method. {{ic|$startdir/src}} is '''not''' guaranteed to be the same as {{ic|$srcdir}}, and likewise for {{ic|$pkgdir}}. Use of this variable is deprecated and strongly discouraged.
; {{ic|startdir}}: This contains the absolute path to the directory where the {{ic|PKGBUILD}} file is located. This variable used to be used in combination with {{ic|/src}} or {{ic|/pkg}} postfixes, but the use of {{ic|srcdir}} and {{ic|pkgdir}} variables is the modern method. {{ic|$startdir/src}} is '''not''' guaranteed to be the same as {{ic|$srcdir}}, and likewise for {{ic|$pkgdir}}. Use of this variable is deprecated and strongly discouraged.
Line 64: Line 79:
All of them contain ''absolute'' paths, which means, you don't have to worry about your working directory if you use these variables properly.
All of them contain ''absolute'' paths, which means, you don't have to worry about your working directory if you use these variables properly.


<!--T:23-->
{{Note|''makepkg'', and thus the {{ic|build()}} and {{ic|package()}} functions, are intended to be non-interactive.  Interactive utilities or scripts called in those functions may break ''makepkg'', particularly if it is invoked with build-logging enabled ({{ic|-l}}). (See [https://bugs.archlinux.org/task/13214 FS13214].)}}
{{Note|''makepkg'', and thus the {{ic|build()}} and {{ic|package()}} functions, are intended to be non-interactive.  Interactive utilities or scripts called in those functions may break ''makepkg'', particularly if it is invoked with build-logging enabled ({{ic|-l}}). (See [https://bugs.archlinux.org/task/13214 FS13214].)}}


<!--T:24-->
{{Note|Apart from the current package Maintainer, there may be previous maintainers listed above as Contributors.}}
{{Note|Apart from the current package Maintainer, there may be previous maintainers listed above as Contributors.}}


=== PKGBUILD Functions ===
=== PKGBUILD Functions === <!--T:25-->


<!--T:26-->
There are 5 functions, listed here in the order they are executed if all of them exist. If one does not exist, it is simply skipped.
There are 5 functions, listed here in the order they are executed if all of them exist. If one does not exist, it is simply skipped.


<!--T:27-->
{{Note|This does not apply to the {{ic|package()}} function, as it is required in every PKGBUILD}}
{{Note|This does not apply to the {{ic|package()}} function, as it is required in every PKGBUILD}}


==== The {{ic|pkgver()}} function ====
==== The {{ic|pkgver()}} function ==== <!--T:28-->


<!--T:29-->
Beginning with pacman 4.1, you can update the pkgver variable during a makepkg. {{ic|pkgver()}} is run right after the sources are fetched and extracted.
Beginning with pacman 4.1, you can update the pkgver variable during a makepkg. {{ic|pkgver()}} is run right after the sources are fetched and extracted.


<!--T:30-->
This is particularly useful if you are [[VCS PKGBUILD Guidelines|making git/svn/hg/etc. packages]], where the build process may remain the same, but the source could be updated every day, even every hour. The old way of doing this was to put the date into the pkgver field which, if the software was not updated, makepkg would still rebuild it thinking the version had changed. Some useful commands for this are {{ic|git describe}}, {{ic|hg identify -ni}}, etc. Please test these before submitting a PKGBUILD, as a failure in the {{ic|pkgver()}} function can stop a build in its tracks.  
This is particularly useful if you are [[VCS PKGBUILD Guidelines|making git/svn/hg/etc. packages]], where the build process may remain the same, but the source could be updated every day, even every hour. The old way of doing this was to put the date into the pkgver field which, if the software was not updated, makepkg would still rebuild it thinking the version had changed. Some useful commands for this are {{ic|git describe}}, {{ic|hg identify -ni}}, etc. Please test these before submitting a PKGBUILD, as a failure in the {{ic|pkgver()}} function can stop a build in its tracks.  
{{Note|pkgver cannot contain spaces or hyphens ({{ic|-}}). Using sed to correct this is common.}}
{{Note|pkgver cannot contain spaces or hyphens ({{ic|-}}). Using sed to correct this is common.}}


==== The {{ic|prepare()}} function ====
==== The {{ic|prepare()}} function ==== <!--T:31-->


<!--T:32-->
Pacman 4.1 introduces the {{ic|prepare()}} function. In this function, commands that are used to prepare sources for building are run, such as patching. This function is run before the build function and after package extraction. If extraction is skipped ({{ic|makepkg -e}}), then {{ic|prepare()}} is not run.  
Pacman 4.1 introduces the {{ic|prepare()}} function. In this function, commands that are used to prepare sources for building are run, such as patching. This function is run before the build function and after package extraction. If extraction is skipped ({{ic|makepkg -e}}), then {{ic|prepare()}} is not run.  


<!--T:33-->
{{Note| (From {{ic|man PKGBUILD}}) The function is run in {{ic|bash -e}} mode, meaning any command that exits with a non-zero status will cause the function to exit.}}
{{Note| (From {{ic|man PKGBUILD}}) The function is run in {{ic|bash -e}} mode, meaning any command that exits with a non-zero status will cause the function to exit.}}


==== The {{ic|build()}} function ====
==== The {{ic|build()}} function ==== <!--T:34-->


<!--T:35-->
Now you need to implement the {{ic|build()}} function in the {{ic|PKGBUILD}} file. This function uses common shell commands in [[Wikipedia:Bash_(Unix_shell)|Bash]] syntax to automatically compile software and create a {{ic|pkg}} directory to install the software to.  This allows ''makepkg'' to package files without having to sift through your filesystem.
Now you need to implement the {{ic|build()}} function in the {{ic|PKGBUILD}} file. This function uses common shell commands in [[Wikipedia:Bash_(Unix_shell)|Bash]] syntax to automatically compile software and create a {{ic|pkg}} directory to install the software to.  This allows ''makepkg'' to package files without having to sift through your filesystem.


<!--T:36-->
The first step in the {{ic|build()}} function is to change into the directory created by uncompressing the source tarball. ''makepkg'' will change the current directory to {{ic|srcdir}} before executing the {{ic|build()}}, thus in most common cases the first command will look like this:
The first step in the {{ic|build()}} function is to change into the directory created by uncompressing the source tarball. ''makepkg'' will change the current directory to {{ic|srcdir}} before executing the {{ic|build()}}, thus in most common cases the first command will look like this:


  cd "$pkgname-$pkgver"
  <!--T:37-->
cd "$pkgname-$pkgver"


<!--T:38-->
The {{ic|/usr/share/pacman/PKGBUILD.proto}} file suggests doing
The {{ic|/usr/share/pacman/PKGBUILD.proto}} file suggests doing


  cd "$srcdir/$pkgname-$pkgver"
  <!--T:39-->
cd "$srcdir/$pkgname-$pkgver"


<!--T:40-->
instead. Again, as {{ic|$srcdir}} is an absolute path, this does not make any difference.
instead. Again, as {{ic|$srcdir}} is an absolute path, this does not make any difference.


<!--T:41-->
Now, you need to list the same commands you used when you manually compiled the software. The {{ic|build()}} function in essence automates everything you did by hand and compiles the software in the fakeroot build environment. If the software you are packaging uses a configure script, it is good practice to use {{ic|1=--prefix=/usr}} when building packages for pacman. A lot of software installs files relative to the {{ic|/usr/local}} directory, which should only be done if you are manually building from source. All Arch Linux packages should use the {{ic|/usr}} directory. As seen in the {{ic|/usr/share/pacman/PKGBUILD.proto}} file, the next two lines often look like this:
Now, you need to list the same commands you used when you manually compiled the software. The {{ic|build()}} function in essence automates everything you did by hand and compiles the software in the fakeroot build environment. If the software you are packaging uses a configure script, it is good practice to use {{ic|1=--prefix=/usr}} when building packages for pacman. A lot of software installs files relative to the {{ic|/usr/local}} directory, which should only be done if you are manually building from source. All Arch Linux packages should use the {{ic|/usr}} directory. As seen in the {{ic|/usr/share/pacman/PKGBUILD.proto}} file, the next two lines often look like this:


  ./configure --prefix=/usr
  <!--T:42-->
./configure --prefix=/usr
  make
  make


<!--T:43-->
{{Note|If your software does not need to build anything, DO NOT use the {{ic|build()}} function. The {{ic|build()}} function is not required, but the {{ic|package()}} function is.}}
{{Note|If your software does not need to build anything, DO NOT use the {{ic|build()}} function. The {{ic|build()}} function is not required, but the {{ic|package()}} function is.}}


==== The {{ic|check()}} function ====
==== The {{ic|check()}} function ==== <!--T:44-->


<!--T:45-->
Place for calls to {{Ic|make check}} and similar testing routines. It is highly recommended to have {{ic|check()}} as it helps to make sure software has been built correctly and works fine with its dependencies.
Place for calls to {{Ic|make check}} and similar testing routines. It is highly recommended to have {{ic|check()}} as it helps to make sure software has been built correctly and works fine with its dependencies.


<!--T:46-->
Users who don't need it (and occasionally maintainers who can not fix a package for this to pass) can disable it using {{Ic|!check}} in PKGBUILD/makepkg options or call {{ic|makepkg}} with {{ic|--nocheck}} flag.
Users who don't need it (and occasionally maintainers who can not fix a package for this to pass) can disable it using {{Ic|!check}} in PKGBUILD/makepkg options or call {{ic|makepkg}} with {{ic|--nocheck}} flag.


==== The {{ic|package()}} function ====
==== The {{ic|package()}} function ==== <!--T:47-->


<!--T:48-->
The final step is to put the compiled files in a directory where ''makepkg'' can retrieve them to create a package.  This by default is the {{ic|pkg}} directory—a simple fakeroot environment.  The {{ic|pkg}} directory replicates the hierarchy of the root file system of the software's installation paths.  If you have to manually place files under the root of your filesystem, you should install them in the {{ic|pkg}} directory under the same directory structure.  For example, if you want to install a file to {{ic|/usr/bin}}, it should instead be placed under {{ic|$pkgdir/usr/bin}}.  Very few install procedures require the user to copy dozens of files manually.  Instead, for most software, calling {{ic|make install}} will do so.  The final line should look like the following in order to correctly install the software in the {{ic|pkg}} directory:
The final step is to put the compiled files in a directory where ''makepkg'' can retrieve them to create a package.  This by default is the {{ic|pkg}} directory—a simple fakeroot environment.  The {{ic|pkg}} directory replicates the hierarchy of the root file system of the software's installation paths.  If you have to manually place files under the root of your filesystem, you should install them in the {{ic|pkg}} directory under the same directory structure.  For example, if you want to install a file to {{ic|/usr/bin}}, it should instead be placed under {{ic|$pkgdir/usr/bin}}.  Very few install procedures require the user to copy dozens of files manually.  Instead, for most software, calling {{ic|make install}} will do so.  The final line should look like the following in order to correctly install the software in the {{ic|pkg}} directory:


  make DESTDIR="$pkgdir/" install
  <!--T:49-->
make DESTDIR="$pkgdir/" install


<!--T:50-->
{{Note|It is sometimes the case where {{ic|DESTDIR}} is not used in the {{ic|Makefile}}; you may need to use {{ic|prefix}} instead. If the package is built with ''autoconf''/''automake'', use {{ic|DESTDIR}}; this is what is [https://www.gnu.org/software/automake/manual/automake.html#Install documented] in the manuals. If {{ic|DESTDIR}} does not work, try building with {{ic|1=make prefix="$pkgdir/usr/" install}}. If that does not work, you will have to look further into the install commands that are executed by "{{ic|make <...> install}}".}}
{{Note|It is sometimes the case where {{ic|DESTDIR}} is not used in the {{ic|Makefile}}; you may need to use {{ic|prefix}} instead. If the package is built with ''autoconf''/''automake'', use {{ic|DESTDIR}}; this is what is [https://www.gnu.org/software/automake/manual/automake.html#Install documented] in the manuals. If {{ic|DESTDIR}} does not work, try building with {{ic|1=make prefix="$pkgdir/usr/" install}}. If that does not work, you will have to look further into the install commands that are executed by "{{ic|make <...> install}}".}}


<!--T:51-->
In some odd cases, the software expects to be run from a single directory. In such cases, it is wise to simply copy these to {{ic|$pkgdir/opt}}.
In some odd cases, the software expects to be run from a single directory. In such cases, it is wise to simply copy these to {{ic|$pkgdir/opt}}.


<!--T:52-->
More often than not, the installation process of the software will create any sub-directories below the {{ic|pkg}} directory. If it does not, however, ''makepkg'' will generate a lot of errors and you will need to manually create sub-directories by adding the appropriate {{ic|mkdir -p}} commands in the {{ic|build()}} function before the installation procedure is run.
More often than not, the installation process of the software will create any sub-directories below the {{ic|pkg}} directory. If it does not, however, ''makepkg'' will generate a lot of errors and you will need to manually create sub-directories by adding the appropriate {{ic|mkdir -p}} commands in the {{ic|build()}} function before the installation procedure is run.


<!--T:53-->
In old packages, there was no {{ic|package()}} function. So, files were put into the ''pkg'' directory at the end of the {{ic|build()}} function. If {{ic|package()}} is not present, {{ic|build()}} runs via ''fakeroot''. In new packages, {{ic|package()}} is required and runs via ''fakeroot'' instead, and {{ic|build()}} runs without any special privileges.  
In old packages, there was no {{ic|package()}} function. So, files were put into the ''pkg'' directory at the end of the {{ic|build()}} function. If {{ic|package()}} is not present, {{ic|build()}} runs via ''fakeroot''. In new packages, {{ic|package()}} is required and runs via ''fakeroot'' instead, and {{ic|build()}} runs without any special privileges.  


<!--T:54-->
{{ic|makepkg --repackage}} runs only the {{ic|package()}} function, so it creates a {{ic|*.pkg.*}} file without compiling the package. This may save time e.g. if you just have changed the {{ic|depends}} variable of the package.
{{ic|makepkg --repackage}} runs only the {{ic|package()}} function, so it creates a {{ic|*.pkg.*}} file without compiling the package. This may save time e.g. if you just have changed the {{ic|depends}} variable of the package.


<!--T:55-->
{{Note|The {{ic|package()}} function is the only required function in a PKGBUILD. If you must only copy files into their respective directories to install a program, do not put it in the {{ic|build()}} function, put that in the {{ic|package()}} function.}}
{{Note|The {{ic|package()}} function is the only required function in a PKGBUILD. If you must only copy files into their respective directories to install a program, do not put it in the {{ic|build()}} function, put that in the {{ic|package()}} function.}}


== Testing the PKGBUILD and package ==
== Testing the PKGBUILD and package == <!--T:56-->


<!--T:57-->
As you are writing the {{ic|build()}} function, you will want to test your changes frequently to ensure there are no bugs. You can do this using the {{ic|makepkg}} command in the directory containing the {{ic|PKGBUILD}} file. With a properly formatted {{ic|PKGBUILD}}, makepkg will create a package; with a broken or unfinished {{ic|PKGBUILD}}, it will raise an error.
As you are writing the {{ic|build()}} function, you will want to test your changes frequently to ensure there are no bugs. You can do this using the {{ic|makepkg}} command in the directory containing the {{ic|PKGBUILD}} file. With a properly formatted {{ic|PKGBUILD}}, makepkg will create a package; with a broken or unfinished {{ic|PKGBUILD}}, it will raise an error.


<!--T:58-->
If makepkg finishes successfully, it will place a file named {{ic|pkgname-pkgver.pkg.tar.xz}} in your working directory. This package can be installed with the {{ic|pacman -U}} command. However, just because a package file was built does not imply that it is fully functional. It might conceivably contain only the directory and no files whatsoever if, for example, a prefix was specified improperly. You can use pacman's query functions to display a list of files contained in the package and the dependencies it requires with {{ic|pacman -Qlp [package file]}} and {{ic|pacman -Qip [package file]}} respectively.
If makepkg finishes successfully, it will place a file named {{ic|pkgname-pkgver.pkg.tar.xz}} in your working directory. This package can be installed with the {{ic|pacman -U}} command. However, just because a package file was built does not imply that it is fully functional. It might conceivably contain only the directory and no files whatsoever if, for example, a prefix was specified improperly. You can use pacman's query functions to display a list of files contained in the package and the dependencies it requires with {{ic|pacman -Qlp [package file]}} and {{ic|pacman -Qip [package file]}} respectively.


<!--T:59-->
If the package looks sane, then you are done! However, if you plan on releasing the {{ic|PKGBUILD}} file, it is imperative that you check and double-check the contents of the {{ic|depends}} array.  
If the package looks sane, then you are done! However, if you plan on releasing the {{ic|PKGBUILD}} file, it is imperative that you check and double-check the contents of the {{ic|depends}} array.  


<!--T:60-->
Also ensure that the package binaries actually ''run'' flawlessly! It is annoying to release a package that contains all necessary files, but crashes because of some obscure configuration option that does not quite work well with the rest of the system. If you are only going to compile packages for your own system, though, you do not need to worry too much about this quality assurance step, as you are the only person suffering from mistakes, after all.
Also ensure that the package binaries actually ''run'' flawlessly! It is annoying to release a package that contains all necessary files, but crashes because of some obscure configuration option that does not quite work well with the rest of the system. If you are only going to compile packages for your own system, though, you do not need to worry too much about this quality assurance step, as you are the only person suffering from mistakes, after all.


=== Checking package sanity ===
=== Checking package sanity === <!--T:61-->


<!--T:62-->
After testing package functionality check it for errors using [[namcap]]:
After testing package functionality check it for errors using [[namcap]]:
  $ namcap PKGBUILD
  $ namcap PKGBUILD
  $ namcap ''<package file name>''.pkg.tar.xz
  $ namcap ''<package file name>''.pkg.tar.xz


<!--T:63-->
Namcap will:
Namcap will:
# Check PKGBUILD contents for common errors and package file hierarchy for unnecessary/misplaced files
# Check PKGBUILD contents for common errors and package file hierarchy for unnecessary/misplaced files
Line 155: Line 203:
Get into the habit of checking your packages with namcap to avoid having to fix the simplest mistakes after package submission.
Get into the habit of checking your packages with namcap to avoid having to fix the simplest mistakes after package submission.


== Submitting packages to the AUR ==
== Submitting packages to the AUR == <!--T:64-->


<!--T:65-->
Please read [https://wiki.archlinux.org/index.php/AUR_User_Guidelines#Submitting_packages AUR User Guidelines#Submitting packages] for a detailed description of the submission process.
Please read [https://wiki.archlinux.org/index.php/AUR_User_Guidelines#Submitting_packages AUR User Guidelines#Submitting packages] for a detailed description of the submission process.


== Summary ==
== Summary == <!--T:66-->


<!--T:67-->
#Download the source tarball of the software you want to package.
#Download the source tarball of the software you want to package.
#Try compiling the package and installing it into an arbitrary directory.
#Try compiling the package and installing it into an arbitrary directory.
Line 168: Line 218:
#If not, repeat the last two steps.
#If not, repeat the last two steps.


=== Warnings ===
=== Warnings === <!--T:68-->


<!--T:69-->
* Before you can automate the package building process, you should have done it manually at least once unless you know ''exactly'' what you are doing ''in advance'', in which case you would not be reading this in the first place. Unfortunately, although a good bunch of program authors stick to the 3-step build cycle of "{{ic|./configure}}; {{ic|make}}; {{ic|make install}}", this is not always the case, and things can get real ugly if you have to apply patches to make everything work at all. Rule of thumb: If you cannot get the program to compile from the source tarball, and make it install itself to a defined, temporary subdirectory, you do not even need to try packaging it. There is not any magic pixie dust in {{ic|makepkg}} that makes source problems go away.
* Before you can automate the package building process, you should have done it manually at least once unless you know ''exactly'' what you are doing ''in advance'', in which case you would not be reading this in the first place. Unfortunately, although a good bunch of program authors stick to the 3-step build cycle of "{{ic|./configure}}; {{ic|make}}; {{ic|make install}}", this is not always the case, and things can get real ugly if you have to apply patches to make everything work at all. Rule of thumb: If you cannot get the program to compile from the source tarball, and make it install itself to a defined, temporary subdirectory, you do not even need to try packaging it. There is not any magic pixie dust in {{ic|makepkg}} that makes source problems go away.
* In a few cases, the packages are not even available as source and you have to use something like {{ic|sh installer.run}} to get it to work. You will have to do quite a bit of research (read READMEs, INSTALL instructions, man pages, perhaps ebuilds from Gentoo or other package installers, possibly even the MAKEFILEs or source code) to get it working. In some really bad cases, you have to edit the source files to get it to work at all. However, {{ic|makepkg}} needs to be completely autonomous, with no user input. Therefore if you need to edit the makefiles, you may have to bundle a custom patch with the {{ic|PKGBUILD}} and install it from inside the {{ic|prepare()}} function, or you might have to issue some {{ic|sed}} commands from inside the {{ic|prepare()}} function.
* In a few cases, the packages are not even available as source and you have to use something like {{ic|sh installer.run}} to get it to work. You will have to do quite a bit of research (read READMEs, INSTALL instructions, man pages, perhaps ebuilds from Gentoo or other package installers, possibly even the MAKEFILEs or source code) to get it working. In some really bad cases, you have to edit the source files to get it to work at all. However, {{ic|makepkg}} needs to be completely autonomous, with no user input. Therefore if you need to edit the makefiles, you may have to bundle a custom patch with the {{ic|PKGBUILD}} and install it from inside the {{ic|prepare()}} function, or you might have to issue some {{ic|sed}} commands from inside the {{ic|prepare()}} function.


==Create a patch file==
==Create a patch file== <!--T:70-->


<!--T:71-->
Example for individual file
Example for individual file


   $ diff -Naur filename.ext.old filename.ext > filename-patchname.diff
   <!--T:72-->
$ diff -Naur filename.ext.old filename.ext > filename-patchname.diff
    
    
   # PKGBUILD
   # PKGBUILD
Line 183: Line 236:
   patch -uN filename.ext ../filename-patchname.diff || return 1
   patch -uN filename.ext ../filename-patchname.diff || return 1


<!--T:73-->
Example for multiple files
Example for multiple files


   $ diff -Naur package-ver.old package-ver > package-patchname.diff
   <!--T:74-->
$ diff -Naur package-ver.old package-ver > package-patchname.diff
    
    
   # PKGBUILD
   # PKGBUILD