2008-12-11 02:22:54 +00:00
|
|
|
A binary package built with xbps is a normal tar(1) archive, compressed
|
2008-12-18 06:15:02 +00:00
|
|
|
with bzip2 and has the following structure:
|
2008-12-11 02:22:54 +00:00
|
|
|
|
|
|
|
/
|
|
|
|
/usr ------|
|
|
|
|
/var ------| => Package structure that will be installed.
|
|
|
|
/etc ------|
|
|
|
|
...
|
2008-12-17 07:27:28 +00:00
|
|
|
/var/cache/xbps/metadata/$pkgname
|
|
|
|
/var/cache/xbps/metadata/$pkgname/flist
|
|
|
|
/var/cache/xbps/metadata/$pkgname/props.plist
|
|
|
|
/var/cache/xbps/metadata/$pkgname/postpre-action.sh
|
2008-12-11 02:22:54 +00:00
|
|
|
|
2008-12-17 07:27:28 +00:00
|
|
|
Metadata info is stored in the "/var/cache/xbps/metadata/$pkgname"
|
|
|
|
directory and two files will be always be present: flist and props.plist.
|
|
|
|
|
|
|
|
The flist file contains the list of files that the package will
|
2008-12-11 02:22:54 +00:00
|
|
|
install. The props.plist file is a proplib(3) property list and
|
|
|
|
has the following structure:
|
|
|
|
|
|
|
|
<dict>
|
2008-12-18 06:15:02 +00:00
|
|
|
<key>pkgname</key>
|
|
|
|
<string>foo</string>
|
|
|
|
|
|
|
|
<key>version</key>
|
|
|
|
<string>3.40</string>
|
|
|
|
|
|
|
|
<key>maintainer</key>
|
|
|
|
<string>The Master BOFH <bofh@baobab.org> </string>
|
|
|
|
|
|
|
|
<key>short_desc</key>
|
|
|
|
<string>Foo is a virtual package</string>
|
|
|
|
|
|
|
|
<key>long_desc</key>
|
|
|
|
<string>
|
|
|
|
Foo is a virtual package to show how the metadata props.plist file works
|
|
|
|
with xbps handling binary packages.</string>
|
|
|
|
|
2008-12-11 02:22:54 +00:00
|
|
|
<key>architecture</key>
|
|
|
|
<string>x86_64</string>
|
2008-12-18 06:15:02 +00:00
|
|
|
|
2008-12-11 02:22:54 +00:00
|
|
|
<key>installed_size</key>
|
|
|
|
<integer>500000</integer>
|
2008-12-18 06:15:02 +00:00
|
|
|
|
2008-12-11 02:22:54 +00:00
|
|
|
<key>configuration_files</key>
|
|
|
|
<array>
|
|
|
|
<string>/etc/foo.conf</string>
|
|
|
|
...
|
|
|
|
</array>
|
|
|
|
<key>run_depends</key>
|
|
|
|
<array>
|
|
|
|
<string>bofh-2.0</string>
|
2008-12-18 06:15:02 +00:00
|
|
|
<string>blab-1.1</string>
|
2008-12-11 02:22:54 +00:00
|
|
|
...
|
|
|
|
</array>
|
2008-12-18 06:15:02 +00:00
|
|
|
...
|
2008-12-11 02:22:54 +00:00
|
|
|
</dict>
|
|
|
|
|
2008-12-18 06:15:02 +00:00
|
|
|
This plist might be extended in the future; additional scripts might be
|
|
|
|
added to trigger actions at pre/post installation/removal of the
|
|
|
|
binary package.
|
2008-12-11 02:22:54 +00:00
|
|
|
|
2008-12-18 06:15:02 +00:00
|
|
|
The package's dictionary will also be written into the repository's package
|
|
|
|
index file, that describes information about a binary package on it.
|
|
|
|
See the BINPKG_REPOSITORY file for more info about repositories.
|