2009-11-22 08:31:44 +01:00
|
|
|
xbps-src - building packages from source
|
|
|
|
========================================
|
|
|
|
|
2009-11-26 23:39:01 +01:00
|
|
|
Introduction
|
|
|
|
------------
|
2009-11-22 08:31:44 +01:00
|
|
|
`xbps-src` is the utility used by the _X binary package system_ to build
|
2009-11-26 23:39:01 +01:00
|
|
|
binary packages from source distribution files. A root directory (`srcpkgs`)
|
2009-11-22 08:31:44 +01:00
|
|
|
contains multiple subdirs, each one to build a package as its name
|
2009-11-26 23:39:01 +01:00
|
|
|
indicates. The following directory structure illustrates it:
|
2009-11-22 08:31:44 +01:00
|
|
|
+
|
|
|
|
+
|
|
|
|
.................................
|
2009-11-26 23:39:01 +01:00
|
|
|
xbps-templates/
|
|
|
|
|
|
|
|
|
|-----srcpkgs/
|
|
|
|
|
|
|
|
|
|-----binutils/
|
|
|
|
|-----gcc/
|
|
|
|
|-----glibc/
|
2009-11-22 08:31:44 +01:00
|
|
|
..................................
|
|
|
|
|
2009-11-26 23:39:01 +01:00
|
|
|
A package subdirectory always has a `template` file, that are the
|
|
|
|
specifications to download and build the binary package from its source files.
|
|
|
|
Additionally some packages may have additional subdirs on it: `files`
|
|
|
|
and `patches`. The `files` subdir may contain configuration files, or
|
|
|
|
any other file required to build the package. The `patches` subdir contains
|
|
|
|
patches that are applied to the source before building.
|
|
|
|
+
|
|
|
|
+
|
|
|
|
|
|
|
|
Some packages may provide `subpackages`; they are different binary packages
|
|
|
|
that are built from the same source package. Each `subpackage` in the directory
|
|
|
|
structure (as shown above) is a symlink to the `real` package subdir, like this:
|
|
|
|
+
|
|
|
|
+
|
|
|
|
....................................
|
|
|
|
srcpkgs/
|
|
|
|
|
|
|
|
|
|-----gcc/
|
|
|
|
|-----libgomp -> gcc
|
|
|
|
|-----libmudflap -> gcc
|
|
|
|
|-----libstdc++ -> gcc
|
|
|
|
....................................
|
|
|
|
|
|
|
|
Each subpackage uses its own `template` build file that is contained in
|
|
|
|
the `real` package subdir, and they have exactly the same name than the
|
|
|
|
symlink pointing to the `real` package subdir. The following example
|
|
|
|
illustrates the structure used by the _udev_ package in the filesystem:
|
|
|
|
+
|
|
|
|
+
|
|
|
|
.......................................
|
|
|
|
srcpkgs/
|
|
|
|
|
|
|
|
|
|-----libgudev-devel -> udev
|
|
|
|
|-----libgudev -> udev
|
2010-02-19 23:40:06 +01:00
|
|
|
|-----libudev-devel -> udev
|
|
|
|
|-----libudev -> udev
|
2009-11-26 23:39:01 +01:00
|
|
|
|-----udev/
|
|
|
|
|----template
|
|
|
|
|----libgudev-devel.template
|
|
|
|
|----libgudev.template
|
2010-02-19 23:40:06 +01:00
|
|
|
|----libudev-devel.template
|
|
|
|
|----libudev.template
|
2009-11-26 23:39:01 +01:00
|
|
|
.......................................
|
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
Requirements
|
|
|
|
------------
|
2009-10-18 11:17:26 +02:00
|
|
|
The following software is required in the host system to build XBPS
|
2009-11-22 08:31:44 +01:00
|
|
|
binary packages from source:
|
|
|
|
|
|
|
|
- GNU awk
|
|
|
|
- GNU bash
|
|
|
|
- GNU bison
|
|
|
|
- GNU gcc c++ (development package)
|
|
|
|
- GNU gettext (development package)
|
|
|
|
- GNU make
|
|
|
|
- GNU patch
|
|
|
|
- GNU texinfo
|
|
|
|
- fakeroot
|
|
|
|
- perl
|
|
|
|
- sudo
|
|
|
|
|
2009-11-26 23:39:01 +01:00
|
|
|
Starting up
|
|
|
|
-----------
|
|
|
|
Firstly you'll have to download the `git` repository that contains `xbps-src`
|
|
|
|
and the build template files. To clone it with `git` use:
|
|
|
|
|
|
|
|
----------------------------------------------------
|
|
|
|
$ git clone git://repo.or.cz/xbps.git xbps-templates
|
|
|
|
----------------------------------------------------
|
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
`xbps-src` and its shell utilities need to be installed in a directory
|
|
|
|
for correct operation, that is accomplished by issuing:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
|
|
|
--------------------------------------------------
|
|
|
|
$ cd xbps-templates/xbps-src && make install clean
|
|
|
|
--------------------------------------------------
|
2009-11-22 08:31:44 +01:00
|
|
|
|
|
|
|
This will install all files into `/usr/local` by default, can be changed
|
|
|
|
by specifying `PREFIX` and `DESTDIR` to make(1).
|
|
|
|
|
|
|
|
Building packages from source
|
|
|
|
-----------------------------
|
|
|
|
`xbps-src` always look for a `template` file in current directory, that's what
|
|
|
|
it specifies the package build definitions and such. The build templates
|
|
|
|
are located in the `srcpkgs` directory, you should change the cwd to the
|
|
|
|
directory matching the package that you want to work on, i.e for binutils,
|
|
|
|
its directory is `srcpkgs/binutils`.
|
|
|
|
+
|
2009-11-26 23:39:01 +01:00
|
|
|
+
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
If configuration file is not specified from the command line with the
|
2009-11-26 23:39:01 +01:00
|
|
|
`-c` flag, it will first try to use the default location at
|
2009-11-22 08:31:44 +01:00
|
|
|
`/usr/local/etc/xbps-src.conf` (or the installation prefix that was specified
|
2009-10-18 11:17:26 +02:00
|
|
|
to the make(1) command), and as last resort in the etc directory of the
|
|
|
|
current directory.
|
2009-11-22 08:31:44 +01:00
|
|
|
+
|
2009-11-26 23:39:01 +01:00
|
|
|
+
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To avoid problems with libtool and configure scripts finding stuff that is
|
|
|
|
available in the host system, almost all packages must be built inside of a
|
2009-11-22 08:31:44 +01:00
|
|
|
chroot. So the first thing would be to create the required set of packages
|
|
|
|
that will be used in the chroot:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
|
|
|
----------------------------------------------------------------
|
|
|
|
$ cd xbps-templates/srcpkgs/xbps-base-chroot && xbps-src install
|
|
|
|
----------------------------------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
This will build all required packages via fakeroot in masterdir, therefore you
|
|
|
|
can run it as normal user. Next commands will require super-user privileges
|
|
|
|
and all package handling will be done within the chroot. I believe it's the
|
|
|
|
most easier and faster way to handle clean dependencies; another reason would
|
|
|
|
be that xbps packages are meant to be used in a system and not just for
|
|
|
|
ordinary users. So once all packages are built, you can create and enter
|
|
|
|
to the chroot with:
|
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
----------------------
|
|
|
|
$ sudo xbps-src chroot
|
|
|
|
----------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
Press Control + D to exit from the chroot. The following targets will require
|
2009-11-22 08:31:44 +01:00
|
|
|
to be done in the chroot (_once xbps-base-chroot is installed_):
|
|
|
|
*build, configure, install, install-destdir, remove, stow and unstow*
|
|
|
|
+
|
2009-11-26 23:39:01 +01:00
|
|
|
+
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
Now let's explain some more about the targets that you can use. To start
|
2009-11-22 08:31:44 +01:00
|
|
|
installing packages you should use the install target, all source packages
|
|
|
|
are located in the `srcpkgs` directory, so to install glib:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
------------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src install
|
2009-11-22 08:31:44 +01:00
|
|
|
------------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
If the package is properly installed, it will be "stowned" automatically.
|
|
|
|
``stowned'' means that this package is available in the master directory,
|
|
|
|
on which xpbs has copied all files from DESTDIR/<pkgname>.
|
2009-11-22 08:31:44 +01:00
|
|
|
+
|
2009-11-26 23:39:01 +01:00
|
|
|
+
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To remove a currently installed (and stowned) package, you can use:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src remove
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
Please note that when you remove it, the package will also be removed
|
2009-11-22 08:31:44 +01:00
|
|
|
from XBPS_DESTDIR and previously `unstowned`.
|
|
|
|
+
|
2009-11-26 23:39:01 +01:00
|
|
|
+
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To stow an already installed package (from XBPS_DESTDIR/<pkgname>):
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
---------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src stow
|
2009-11-22 08:31:44 +01:00
|
|
|
---------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
To unstow an already installed (stowned) package:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src unstow
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
You can also print some stuff about any template build file, e.g:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
----------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ xbps-src info
|
2009-11-22 08:31:44 +01:00
|
|
|
----------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To list installed (stowned) packages, use this:
|
2009-11-22 08:31:44 +01:00
|
|
|
---------------
|
|
|
|
$ xbps-src list
|
|
|
|
---------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To only extract the distfiles, without configuring/building/installing:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ xbps-src extract
|
2009-11-22 08:31:44 +01:00
|
|
|
------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To not remove the build directory after successful installation:
|
2009-11-26 23:39:01 +01:00
|
|
|
|
2009-11-22 08:31:44 +01:00
|
|
|
---------------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src -C install
|
2009-11-22 08:31:44 +01:00
|
|
|
---------------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To only fetch the distfile:
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ xbps-src fetch
|
2009-11-22 08:31:44 +01:00
|
|
|
-----------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To only install the package, _without_ stowning it into the master directory:
|
2009-11-22 08:31:44 +01:00
|
|
|
--------------------------------------------------
|
2009-11-26 23:39:01 +01:00
|
|
|
~/srcpkgs/glib$ sudo xbps-src install-destdir
|
2009-11-22 08:31:44 +01:00
|
|
|
--------------------------------------------------
|
2009-10-18 11:17:26 +02:00
|
|
|
|
|
|
|
To list files installed by a package, note that package must be installed
|
|
|
|
into destination directory first:
|
2009-11-22 08:31:44 +01:00
|
|
|
----------------------------
|
|
|
|
$ xbps-src listfiles pkgname
|
|
|
|
----------------------------
|